So I'm writing a new script and had a custom SPS map made for it.
Below is my current walking procedure, but for some reason it toggles my run option, usually to false.
I'm just trying to work out where in this piece of code there is something that would make it toggle the run to whatever it feels like?
Simba Code:
procedure Walk2Bank;
var
myPath: Array of TPoint;
begin
Status('Walk2Bank - SPS');
if not LoggedIn then
begin
{$IFDEF DEBUG}
WriteLn('Not logged in @Walk2Bank.');
{$ENDIF}
NextPlayer(False);
end;
if FindNormalRandoms then
Exit;
MakeCompass('n');
SetAngle(SRL_ANGLE_HIGH);
myPath := [Point(261, 172), Point(253, 176), Point(243, 178), Point(233, 178), Point(224, 179), Point(220, 182), Point(213, 182)];
if not SPS_WalkPath(myPath) then
Walk2Bank2; //TPA failsafe walking method
end;