Hi, I have been having an issue getting SMART to load for the 07 Runescape servers. I have followed all of the guides step by step, and I still cannot find the solution to my problem. This is what I currently have entered in the Simba bot.
Simba Code:
Program testP07;
{$DEFINE SMART8}
{$I SRL/SRL.Simba}
{$I P07Include.Simba}
//LOGIN INFO STUFF
Procedure P07_DeclarePlayer;
Begin
P07_PlayerName:='username';
P07_PlayerPass:='password';
End;
Begin
SetupSRL;
P07_DeclarePlayer;
SetupP07Include;
ActivateClient;
Wait(2000);
If (Not P07_LoggedIn) Then
P07_LogInPlayer;
P07_MakeCameraAngleHigh;
P07_MakeCompassNorth;
Writeln(P07_GetUpText);
If P07_BankScreen Then
WriteLn('Bank is Open');
If P07_InvFull Then
WriteLn('Inventory is Full');
End.
When I hit play this is the message I receive:
Compiled successfully in 842 ms.
SRL Compiled in 16 msec
Checking P07Include VersionNumber
Local : 1.7 / Latest : 1.7
You Have The Latest Version of P07Include
@r
Successfully executed.
It says that it successfully executes yet SMART will not load up on my screen. Occasionally i'll get this error as well:
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.
Any help would be very much appreciated.