About
THIS IS NOW OUTDATED
PLEASE UPDATE TO SRL-OSR HERE
Must be called in this order:
Simba Code:
{$DEFINE SMART8}
{$I SRL/SRL.Simba}
{$I P07Include.Simba}
SetupSRL;
P07_DeclarePlayer;
SetupP07Include;
This is not a Script. it is an include, it will not bot anything for you, you must write a script to use it!!
If you are unfamiliar with my similar project: Projectrs06 SRL Include please take a moment to read and familiarize yourself with what it is,
Simba Code:
{$I P07Include.Simba}
SetupP07Include; //call in your script
Designed for Brightness all the way to the right! (up full)
Setup
Designed for a browser (I'm using Chrome), not S.M.A.R.T, but it will probably work in there too (remember to drag the green target from Simba's toolbar onto the RS client)
NEW Video Tutorial by YoHoJo:
General Setup:http://youtu.be/Iox4LylEj40
Get SMART to load RS07 (So you can minimize the bot): http://youtu.be/0N-RWHwHHAY
- Save and Move P07Include To: Simba\Includes\
- Save, Extract and Move P07UpChars(folder) To: Simba\Fonts\
Example how to use in a Script:
Simba 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.