hey, look at this
SCAR Code:
FindRoadColor;
if RadialRoadWalk(RoadColor,270, 360, 70, X,Y) then MouseFlag(X, Y, 3, 3) Else Logout;
Wait(1000);
flag;
If FindSymbol(X, Y, 'shop') then MouseFlag(X, Y, 3, 3) Else
Begin
Tries:= 0;
Repeat
Tries:= Tries + 1 ;
Wait(1000+Random(500));
If FindSymbol(X, Y, 'shop') then
begin
MouseFlag(X, Y, 3, 3);
Exit;
End;
until (tries > 5)
logout;
End;
End;
my problem is:
it does the radialroadwalk then it clicks it with mouseFLAG but before the Flag is gone it clicks somewhere :S, where i don't click in the whole procedure so i don't know where that click is coming from... can some1 tell me what to do?
Thanks! Hermpie!