For starters, I DID search posts and read every tutorial. However, could not find a solution for the problem. The radial walk does work, just with ridiculously slow mouse movement. I set MMouseSpeed manually, and UseBenMouse, but no dice.
SCAR Code:
program New;
{.include SRL/SRL.scar}
{.include SRL/SRL/misc/FaladorColorFinder.scar}
{Start at leftmost bank slot at east fally bank}
const
MMouseSpeed = 7;
UseBenMouse = true;
begin
wait(2000);
SetAngle(true);
MakeCompass('N');
FindFaladorRoadColor;
writeln('Found ' +inttostr(roadcolor));
RadialWalk(RoadColor, 150, 160, 70, -1,-1);
Flag;
end.
From what I have read this SHOULD work. So, I made this post assuming there is some ubernoob mistake I made with a value somewhere, or that I forgot something, etc. If so, I call shenanigans.