
Originally Posted by
coolguy14136
when i try to use 2 radial walk twice in a row, the second one makes the mouse freak and stay in one line and go up and down realy fast. this also happens when i add MakeCompass('n');
Begin
SetupSRL;
SetChats;
FindFaladorRoadColor;
RadialRoadWalk(RoadColor, 72, 60, 73, X, Y);
RadialRoadWalk(RoadColor, 52, 103, 72, X, Y);
end.
Ok, theres few mistakes....
SCAR Code:
Begin
SetupSRL;
SetChats;
FindFaladorRoadColor;
RadialRoadWalk(RoadColor, 72, 60, 73, 0, 0);
RadialRoadWalk(RoadColor, 52, 103, 72, 0, 0);
end.
If you have setted XMod and YMod to X and Y and setted them to variables you should get:
SCAR Code:
Duplicate identifier 'x' in script
and
SCAR Code:
Duplicate identifier 'y' in script
XMod and YMod arent x and y...they are numbers...try reading the "brief lesson in radial walk by WT-Fakawi"...if you are too lazy just put "0" to XMod and YMod...and instead of RoadColor....try "FindRoadColor" thats muts better...it finds the road color for ya...and radius is 72 max i suppose so you cant put there "73" so heres the fixed version:
SCAR Code:
Begin
SetupSRL;
SetChats;
FindFaladorRoadColor;
RadialRoadWalk(FindRoadColor, 72, 60, 68, 0, 0);
Wait(500)
RadialRoadWalk(FindRoadColor, 52, 103, 68, 0, 0);
Wait(500)
end.
I put minimum 500ms wait after every radialroadwalk for slow comps...!
I hope this filled most of your guestions...but feel free to ask more...!