Can anyone tell me where I am going wrong trying to jsut get it to talk to the Astral Altar.
Simba Code:
program new;
{$DEFINE SMART}
{$i srl/srl.scar}
{$i sps/sps.simba}
Var
Pts: TPointArray;
begin
smart_server := 1;
smart_members := false;
smart_signed := true;
smart_superDetail := false;
ClearDebug;
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE,['0_2']);
Pts := [Point(239, 172), Point(285, 174), Point(285, 205), Point(282, 237), Point(292, 277), Point(322, 304), Point(347, 333), Point(376, 359), Point(418, 388), Point(455, 382), Point(466, 378)];
SPS_WalkPath(Pts);
SPS_Continue := true;
end.
Any Idea?