Hi i tried to make a script 2day but i didn't work as it wont even click. It
stops before i can start slapping dummy's. Ive got my script below please
tell me how to make it work.
thank you.
p.s Please can you refurbish it and post it or tell me what to do
SCAR Code:
////////////////////////////////////////////////////
///////////// Dummy puncher By Tomdavies////////////
///////////////////////////////////////////////////
///1. position yourself in varrock dummy place////
///2. press play/////////////////////////////////
program FirstScript;
{.include SRL/SRL.scar}
var
i,x,y:Integer;
const
DummyColor = 8430270;//The couler of the dummy to slap.
procedure SlapD;
begin
i:= 0;
repeat
i:=i + 1;
if(FindColor(x,y,DummyColor,0,0,683,358)) then
begin
Wait(1000 +random(500))
Mouse(x, y, 3, 3, True); //moves the mouse.
Wait(5000 +random(500));
end;
until(not(FindColor(x,y,Dummycolor,0,0,683,358)));
end;
begin
SetupSRl; //will setup srl.
SlapD; //will slap the dummy .
end.