SCAR Code:
program SuperHeater;
{.include SRL\SRL.scar}
Procedure one; //You must split your script up in procedures..
begin
MMouse(741,187,5,5) // Here you let it randomly move a few pixels away
wait(1000+random(300))//from the real point so.
Mouse(741,187,0,0) //This shouldn't be another5 pixels away but on the same
end; //point.
Procedure two;//same
begin
MMouse(672,312,5,5)
wait(1000+random(300))
Mouse(672,312, 0, 0) //Here the same.. not 5,5 cuz it alreaddy move a bit
// random. So 0, 0
end;
Procedure three;//same
begin
MMouse(584,228, 3, 3) //Make this MMouse
wait(1000+random(300))
Mouse(584,228, 0, 0, true)
end; //You forgot this end.
begin //And you forgot the begin of the mainloop..
one; // So here you say which procedures you want to run
two;// and you run this one
three; //and after two you run three;
end.