Results 1 to 2 of 2

Thread: Settings for runescape3

  1. #1
    Join Date
    Mar 2017
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Settings for runescape3

    I am trying to write my own script and cant figure out the right interface for the includes.

    I followed Coh3n's guide "how to install/setup Simba for RS3" -Setting up in-game graphics and interfaces.

    Test i did having bank open.
    Code:
    program test;
    
    {$DEFINE SMART}              // Always have this to load smart
    {$I SRL-6/SRL.simba}         // To load the SRL include files
    {$I SPS/lib/SPS-RS3.Simba}   // To load the SPS include files
    
    begin
      clearDebug();
      setupSRL();
      if bankScreen.isOpen() then
        writeln('The banks is open! Lets start banking items!');
    end.
    Code:
    ---- Client is ready.
    ---- Setup SRL in 0 Seconds
    -- setupSRL(): True
    -- Succesfully freed SMART[9200]
    Successfully executed.

    Are there other things that affect this result like brightness?
    Last edited by simrou; 03-08-2017 at 04:10 PM.

  2. #2
    Join Date
    Mar 2017
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I got it to work it was because i put the "Upgrade" button was in the top left corner of the screen... but if you leave it where it is in the old school layout or move it somewhere else its working.
    Last edited by simrou; 03-08-2017 at 04:52 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •