SCAR Code:
program New;
{.include SRL/SRL.scar}
var
RCo : integer;
begin
ClearDebug;
SetupSRL;
activateclient;
Wait(1250);
RoadColor := FindFallyRoadColor //if you're in falador, otherwise do FindRoadColor
RadialRoadWalk(RCo, 2, 360, 65, -2, 0);
writeln('walk successfull');
end.
I think RoadColor is already somewhere, so I'd use this.
so that or this
SCAR Code:
program New;
{.include SRL/SRL.scar}
var
RCo : integer;
begin
ClearDebug;
SetupSRL;
activateclient;
Wait(1250);
RoadColor := FindRoadColor //if you're in falador, do FindFallyRoadColor
RadialRoadWalk(RCo, 2, 360, 65, -2, 0);
writeln('walk successfull');
end.
You could have it search for the RoadColor, that'd be fine too, but it isn't much fun to see the road color 10 times in a row every loop.
Is this what you meant?