I have tried to make DTMs, SPS and some others but I get errors.
I want to make SPS because it looks like the best one.
Here's my code:
Simba Code:
program IronMiner;
{$i sps/sps-osr.simba}
{$i srl-osr/srl.simba}
Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; //Type in your login-name
Players[0].Pass := ''; //Password
Players[0].Nick := ''; //Your player name shown in-game. Not the first characters of words! eg. 'Bob' = 'ob'
Players[0].Pin := ''; //Bank PIN
Players[0].Active:=True; //Ignore this
end;
procedure WalkTo;
var
PointWalkTime:TPointArray;
begin
SPS_Setup(RUNESCAPE_SURFACE,['12_7']);
myPath := [Point(4990, 3187), Point(5002, 3161), Point(4994, 3129),
Point(4992, 3091), Point(4995, 3067), Point(4985, 3035), Point(4975, 3003), Point(4965, 2983), Point(4937, 2965), Point(4907, 2971), Point(4882, 2971),
Point(4858, 2966), Point(4842, 2972), Point(4841, 2998)];
end;
begin
SetupSRL;
ActivateClient;
DeclarePlayers;
LoginPlayer;
SPS_Setup;
WalkTo;
end.
and I get this error:
[Error] C:\Simba\Includes\sps/sps-osr.simba(55:35): Unknown identifier 'MMCX' at line 54
Compiling failed.
and
[Error] (25:3): Unknown identifier 'myPath' at line 24
Compiling failed.
I have SPS latest
oh and I'm trying to make it for old school rs.