Simba Code:
program test_walker;
{$i SRL-OSR/SRL.Simba}
{$i SPS/SPS-OSR.simba}
procedure WalkToBank;
var
myPath:TPointArray;
begin
SPS_Setup(runescape_surface, ['13_12']);
myPath := [Point(328, 274), Point(331, 255), Point(357, 265), Point(363, 290),
Point(362, 314), Point(365, 335), Point(345, 341), Point(254, 399), Point(74, 219),
Point(196, 90), Point(397, 98), Point(448, 209), Point(430, 347), Point(346, 341)];
SPS_WalkPath (myPath);
end;
begin
SetupSRL;
SPS_Debug := True;
SPS_AnyAngle := True;
SetAngle (SRL_ANGLE_HIGH);
SPS_GetMyPos;
WalkToBank;
end.
In the Debug I get;
SPS ERROR: SPS_Setup was never called
I did call it though, or did I incorrectly?
Could you guys suggest me a reflection tutorial, almost given up on SPS for now.