PROBLEM SOLVED
I am trying to walk out of east fally bank just a shortways out of the entrance onto the road. For some reason I cannot get it to work properly. I had at first this:
SCAR Code:
function WalkBackup: Boolean;
begin
if not LoggedIn then Exit;
SetAngle(True);
MakeCompass('N');
Write('Using WalkBackup');
FallyRoadColor := FindFallyRoadColor;
if (RadialRoadWalk(FallyRoadColor, 42, -35, 26, 1, -1)) then
begin
Result := True
FFlag(1);
end else Result := False;
But then for some reason having a negative in there totally screws it up and it picks a spot wayyy too far left. So then I tried to make it check positive one way, then postive the other way like this, but now it is just coming out false all the time.
SCAR Code:
function WalkBackup: Boolean;
begin
if not LoggedIn then Exit;
SetAngle(True);
MakeCompass('N');
Write('Using WalkBackup');
FallyRoadColor := FindFallyRoadColor;
if (RadialRoadWalk(FallyRoadColor, 40, 0, 26, 1, -1)) then
begin
Result := True
FFlag(1);
end else
begin
if (RadialRoadWalk(FallyRoadColor, 360, 325, 26, 1, -1)) then
begin
Result := True
FFlag(1);
end else Result := False;
end;
end;