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.