It Dont Click In the right place and is Mouse ok to use in rs?Ill give rep for anyone to help
SCAR Code:
program DummyPwnage;
{.include SRL/SRL.scar}
// start in dummy place cammera highest point
//Compass exactly north otherwise it wont locate dummy :(
procedure FindDummy;
begin
if (FindColorSpiral(x,y,8627906,0,0,233,234)) then
writeln('Found Dummy Now Clicking');
end;
procedure ClickDummy;
begin
if (FindColor(x,y,8627906,0,0,252,220))Then
MMouse(x,y,221,136);
wait(400+random(200));
Mouse(x,y,221,136,true);
end;
Begin
FindDummy;
ClickDummy;
end.