So that's what it SRL was...
I have a new problem, sorry for asking so much.
SCAR Code:
program Alcher;
{.include SRL/SRL.scar}
procedure Clicks;
begin
MouseBox(563, 339, 583, 358, 1);
wait(500+random(166));
MouseBox(565, 552, 592, 276, 1);
wait(3000+random(1000));
end;
begin
SetupSRL;
repeat
clicks;
until(IsFKeyDown(12));
end.
I tried that script but it keeps saying:
Access to file denied by user.
even if I ran SCAR as "Run as Administratot"
So I tried removing the SRL stuff and ended up with this:
SCAR Code:
program Alcher;
procedure Clicks;
begin
MouseBox(563, 339, 583, 358, 1);
wait(500+random(166));
MouseBox(565, 552, 592, 276, 1);
wait(3000+random(1000));
end;
begin
repeat
clicks;
until(IsFKeyDown(12));
end.
But then I got a new error message:
Failed when compiling
Line 5: [Error] (5:32): Invalid number of parameters in script C:\Users\Cesar\Desktop\Alcher.scar
What did I do wrong?