About
PLEASE NOTE THIS IS A PRIVATE SERVER INCLUDE, NOT 07Scape My 07Scape here: http://villavu.com/forum/showthread.php?t=96863
Auto-updater added hopefully
Also Available Here On code.google.com
Last Update: [10/2/13] [D/M/Y]
SPS Edit BETA Added :)
ChangeLog:
Original Thread: http://villavu.com/forum/showthread.php?t=95733Code:SPS BETA added
AutoUpdater for googlecode svn trunk added
As I'm currently leading development of this, I need my own thread I can Update myself with the latest files and not have to constantly bump a random post in rjj95's thread, all credit to rjj95 for originally starting this and bringing us together
Ok, so we are working on an Include for projectrs06, a private server, we will attempt to re-create useful SRL functions to work for this this to make it easier for the members here who script for it :)
Current Contributor's
@DannyRS
@rjj95
@John
@Awkwardsaw
@Shatterhand
@CynicRus
Simba Code:{$I P06Include/P06Include.Simba}
SetupP06Include; //call in your script
{$I Sps/P06sps.Simba} //if you are using the sps beta
Obviously Designed To Work For These Settings:
http://i.imgur.com/3Dh8dIY.png
You must drag the target from Simba's toolbar onto the game client!
Functions Available So Far:
http://i.imgur.com/nfghrS7.png
Setup Video by @Sneakdella
http://www.youtube.com/watch?v=E3dfYdENGAU
Create a Folder Somewhere, Extract The Attached Folders Into That, Open It, Then Move Folder's To:
P06Include To:
http://i.imgur.com/QgABlSS.png
P06UpChars To:
http://i.imgur.com/EYjyYYR.png
p06sps To:
http://i.imgur.com/qByHuD8.png
Example how to use in a Script:
Simba Code:Program testP06;
{$I SRL/SRL.Simba}
{$I P06Include/P06Include.Simba}
//LOGIN INFO STUFF
Procedure P06_DeclarePlayer;
Begin
P06_PlayerName:='username';
P06_PlayerPass:='password';
End;
Begin
P06_DeclarePlayer;
SetupP06Include;
ActivateClient;
Wait(2000);
If (Not P06_LoggedIn) Then
P06_LogInPlayer;
P06_MakeCameraAngleHigh;
P06_MakeCompassNorth;
Writeln(P06_GetUpText);
If P06_BankScreen Then
WriteLn('Bank is Open');
If P06_InvFull Then
WriteLn('Inventory is Full');
End.
SPS Beta Stuff
If you are trying out SPS, I recommend you use CynicRus's PathMaker, it has a number of useful tools and code generation options, it can be found Here
There are alot of other sps tutorials that you can try aswell, they should be almost exactly the same as what we have here, look around the tutorial section :)

