well FindRoadColor function aint working so i made this easy procedure to help while it gets fixed.
instead of using
SCAR Code:
RadialRoadWalk(FindRoadColor, 84, 100, 55, 0, 0)
if you use that at all in you script or any other procedures where you need road color just add the next procedure into the script
SCAR Code:
procedure RoadColor2;
begin
road := BitmapFromString(8, 5, 'beNorSqgrGggEAGeMNIE=');
r:=AutoColorThis(road, 60, 542, 8, 710, 161);
FreeBitmap(road);
end;
now with this procedure in your script.
all that you have to do is call RoadColor2 before you need to use it so that it can get the correct color for walking
SCAR Code:
RadialRoadWalk(r, 84, 100, 55, 0, 0)
this will allow you to continue autoing untill the autocolor is fixed.
please tell me if this works for you