ok I was trying to make a script using Radial Road Walking and Im pretty sure i set it up right but it wont click at all. It just says this:
Code:
Bank Symbol Color Is: 5824255
THROUGH MINIMAP!!!!!!!!---> 65536
RoadColor[1] = 65536
THROUGH RADIALROADWALK= ---> 65536
But anyways why wont it click here is the procedure im using it in.
SCAR Code:
Procedure WalkToYew;
begin
BankSymbol := GetSymbolColor(x, y, 'bank');
Writeln('Bank Symbol Color Is: '+IntToStr(BankSymbol));
wait(1500+random(1500));
RadialRoadWalk(myRoadColor,326,686,59,1,-1);
wait(7500+random(2500));
RadialRoadWalk(myRoadColor,358,718,69,1,-1);
wait(7500+random(2500));
RadialRoadWalk(myRoadColor,346,706,71,1,-1);
wait(7500+random(2500));
If(FindSymbol(x,y,'Rare Trees')) then
Writeln('We Have Made It To The Yews');
Mouse(x,y,5,5,True);
If(Not(FindSymbol(x,y,'Rare Trees'))) then
Writeln('I Got Lost');
Players[CurrentPlayer].Loc:= 'Lost';
Players[CurrentPlayer].Active:= False;
LogOut;
NextPlayer(True);
end;
At first I used flag; instead of wait but i changed it in hope it would work.