Ok so i have started to script for the first time (yay....) and i needed to learn radial walk and i have so i made a script for the walking and i called it for test and its for test walking... heres the script, note that i did NOT wish to get any help or let anyone see my script or parts of it but im just an uber super duper n00b so here read on...
THIS WORKS IN LUMBY ONLY! its supposed to walk from lumby garden to the north heres a map, it has 7 clicks and after each walk it says 1,2,3,4 and so on and 1 meens the first checkpoint...
Red: Ive done these and they work 100%
Blue: It dosent walk this path cuz it gets a Loading Screen so the color changes
Green: I have this left to do

SCAR Code:
program New;
{.include srl/srl.scar}
const
Color = 6316391 ; //road color!
procedure start;
begin
cleardebug;
RadialWalk( color , 50, 160, 50, 1, 1);
Writeln ('1');
fflag (0);
RadialWalk( color , -50, 10, 65, 1, 1);
Writeln ('2');
fflag (0);
RadialWalk( color , -40, 50, 65, 1, 1);
Writeln ('3');
fflag (0);
RadialWalk( color , 1, 10, 50, 1, 1);
Writeln ('4');
fflag (0);
RadialWalk( color , 1, 10, 65, 1, 1);
Writeln ('5');
fflag (0);
RadialWalk( color , -80, 1, 70, 1, 1);
writeln ('6');
fflag (0);
RadialWalk( color , -80, 1, 60, 1, 1);
writeln ('7');
fflag (0);
end;
begin
setupsrl;
start;
end.
thats the radial thing and the symbol problem is that i whant it to click on the quest icon and i read a tut about symbol finding&clicking but i coundt make it to work... so plz help...