I get this same problem guys (im trying to get on 07)
I did everything Simba, SRL, SMART8, DannyRS's files
in the console it says "the automatically split characters are too wide. Try decreasing minspacing"
This is when i followed the final 2 videos of YohoJo when he runs the script from DannyRS's page.
It seems like it selects the client screen, but then doesnt do anything/type in login details.
any help? thanks!
code i used:
Code:
Program testP07;
{$I SRL/SRL.Simba}
{$I P07Include.Simba}
//LOGIN INFO STUFF
Procedure P07_DeclarePlayer;
Begin
P07_PlayerName:='username';
P07_PlayerPass:='password';
End;
Begin
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.