Can someone please help im having issues with trasitioning from one road to another... road south of falador to falador to be exact, the script compiles but for somereason radial walk wont change from one road to the other...
SCAR Code:
program Noneya;
{.include SRL/srl.scar}
Var x,y: Integer;
begin
Setupsrl;
ActivateClient;
Wait(300);
if RadialWalk(FindRoadColor, 0, 15, 73, -2, 1) then
if RadialWalk(FindRoadColor, 310, 360, 73, -2, 1) then
repeat
RadialWalk(FindRoadColor, 350, 360, 30+random(30), -2, 1)
until (FindColor(x,y,FindFallyRoadColor,0,0,725,163));
repeat
RadialWalk(FindFallyRoadColor, 0, 10, 30+random(30), -2, 1)
until FindSymbol(x,y,'bank');
end.