I found this game where you just have to click boxes as fast as you can so I wrote a little script for it!
The game is here: http://www.themousegame.com/
And here's my script!
SCAR Code:
///////////////////////////////////////////////////
///// /////
///// TheMouseGame.Com Pwner by PhantomCode /////
///// /////
///////////////////////////////////////////////////
program TheMouseGameDotComPwner;
{.include SRL\SRL.scar}
const
WaitTime = 203; // How long to wait between clicks in ms (~205)
procedure ClickBoxes;
var
x, y , a, b : integer;
begin
x := 385;
y := 140;
for a:=0 to 6 do
begin
for b:=0 to 6 do
begin
writeln('Clicking box number ' + inttostr(a*7+b+1) + ' of 49');
clickmouse(385+(20*b), 140+(20*a), true);
wait(WaitTime);
end;
end;
end;
begin
SetupSRL;
activateclient;
wait(1000);
ClickBoxes;
Writeln('All boxes clicked succesfully!');
end.