EOSERV Forum > Lounge > How to u instert Like CTRL.scar Files into Eo?
Topic is locked.
Page: << 1 >>
How to u instert Like CTRL.scar Files into Eo?
Author Message
Post #71833 How to u instert Like CTRL.scar Files into Eo?

How to u instert Like CTRL.scar     Files into Eo? Please help

14 years, 5 weeks ago
Post #71844 Re: How to u instert Like CTRL.scar Files into Eo?

Do u mean a script that holds down CTRL?

14 years, 5 weeks ago
Post #71853 Re: How to u instert Like CTRL.scar Files into Eo?

this may or may not be what you want but here..

Program Ctrl;{By Sorokya}
begin
cleardebug;
writeln('Ctrl by Sorokya Press F8');
writeln('to Start and F9 to Stop');
repeat
begin
if(findwindowtitlepart('Endless Online',False))then
begin
activateclient;
end
if(isfkeydown(8))then
begin
keydown(17);
end
if(isfkeydown(9))then
begin
keyup(17);
end
end
until(false);
end.

---
CN:BH 4 lyfe
14 years, 5 weeks ago
Post #71860 Re: How to u instert Like CTRL.scar Files into Eo?
jimmy posted: (2nd Apr 2011 05:57 pm)

this may or may not be what you want but here..

Program Ctrl;{By Sorokya}
begin
cleardebug;
writeln('Ctrl by Sorokya Press F8');
writeln('to Start and F9 to Stop');
repeat
begin
if(findwindowtitlepart('Endless Online',False))then
begin
activateclient;
end
if(isfkeydown(8))then
begin
keydown(17);
end
if(isfkeydown(9))then
begin
keyup(17);
end
end
until(false);
end.


That looks an awful lot like Pascal o.o? I didn't know SCAR was derived from Pascal?
---
If money doesn't grow on trees, then why do banks have branches?
14 years, 5 weeks ago
Post #71864 Re: How to u instert Like CTRL.scar Files into Eo?

Scar is pascal/delphi pseudo code. ;)

The program itself was originally written in pascal, but then freddy1990 took over the development of it and switched it to delphi.

Scar is basically a simplified version of delphi.

Also, I doubt you can integrate a scar script into Eoserv. But its worth a try anyway.

Heres a much smaller and more efficient auto Ctrl script i just made too.

Does the job well.


program AutoCTRL; //By Nerrevar
begin
FindWindowTitlePart('Endless Online', false);
wait(100);
ActivateClient;
repeat
if (IsFKeyDown(1)) then
repeat
KeyDown(17);
wait(100);
KeyUp(17);
until (IsFKeyDown(2));
until (false);
end.

14 years, 5 weeks ago
Post #72067 Re: How to u instert Like CTRL.scar Files into Eo?
perfect posted: (2nd Apr 2011 05:11 pm)

Do u mean a script that holds down CTRL?


Yep So How Do Use Then / Instert them
14 years, 4 weeks ago
Page: << 1 >>
Topic is locked.
EOSERV Forum > Lounge > How to u instert Like CTRL.scar Files into Eo?