PotentPK
11-12-2011, 06:44 PM
I'm using SPS and I put in the coordinates but I can't get anywhere. I just get this.
Successfully executed.
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]
program Willows;
{$DEFINE SMART}
{$i SRL/SRL.scar}
{$i sps/sps.simba}
Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name :='*****'; // Copy and paste to add more players
Players[0].Pass :='***';
Players[0].Nick :='***'; //Used for random events
Players[0].Active:=True;
end;
var
MyPath: TPointArray; // We will store our points in a TPointArray
begin
Smart_Server := 1;
SetupSRL;
DeclarePlayers;
LoginPlayer;
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE, ['10_9']);
MyPath := [Point(195, 59), Point(167, 91)];
end.
Successfully executed.
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]
program Willows;
{$DEFINE SMART}
{$i SRL/SRL.scar}
{$i sps/sps.simba}
Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name :='*****'; // Copy and paste to add more players
Players[0].Pass :='***';
Players[0].Nick :='***'; //Used for random events
Players[0].Active:=True;
end;
var
MyPath: TPointArray; // We will store our points in a TPointArray
begin
Smart_Server := 1;
SetupSRL;
DeclarePlayers;
LoginPlayer;
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE, ['10_9']);
MyPath := [Point(195, 59), Point(167, 91)];
end.