Results 1 to 6 of 6

Thread: When client launches RS will not update/load

  1. #1
    Join Date
    May 2012
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default When client launches RS will not update/load

    hey fellas, title says it all.

    New issue: see posts down below

    when I launch simba on all my other pc's it works, this is why im stumped.

    It basically gets stuck at updating

    Updating - 5%(6)

    Last edited by Abusch2013; 06-14-2012 at 02:20 PM.

  2. #2
    Join Date
    Nov 2011
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Are you using java 7 or 6?

    I had the same issue, I added this to the script:


    Quote Originally Posted by Brandon View Post
    That's the thing.. NONE of that will make it load faster.. RSReady is a function that WAITS constantly until your login screen is there.. If I recall, Smart's screen stays black for quite some time before it starts loading. Not only that when it does start loading, RSReady will keep the slider at half way until smart is done loading which will take forever unless you move it manually..

    Now the solution goes like this:

    If you override RSReady by loading smart manually and setting the refresh to 100, the screen still stays black because the command isn't registered for whatever reason. I'm not sure why. The solution to fix that black screen is to MOVE the smart mouse. Why? Because it paints on the canvas as it's not actually a real mouse. It's a 2-5 pixel diameter dot that's paint on the canvas. Smart starts to load, u set the slider to max.. then reset it back after.

    Here is a sample script I currently use and tested. Works the best!
    Simba Code:
    {$DEFINE SMART}
    {$I SRL/SRL.Simba}

    begin
                                           //Load all smart info so that SetupSRL doesn't close smart to open it twice!
      Smart_Server := 72;
      Smart_Members := True;
      Smart_Signed := True;
      Smart_SuperDetail := False;

      SmartSetupEx(Smart_Server, Smart_Members, Smart_Signed, Smart_SuperDetail);    //Override the one in SetupSRL by calling this first!
      MMouse(1, 1, 1, 1);    //Move the mouse 2-4 pixels so that Smart STARTS to load.. If you comment out this line, Smart Will load SLOW AS HELL
      SmartSetRefresh(100);   //Smart is now loading slowly so speed it up by setting refresh to 100.
      while (Not RSReady) do   //Finally do what the SetupSRL was meant to do.. Wait until we are at the login screen..
        wait(1000);
      SetupSRL;     //Call SetupSRL.. This should have no work to do except setup boxes.. We have done all the work manually already.. Thus this will only setup randoms and boxes like MSBox, MIBox, etc..


      SmartSetRefresh(50);    //Totally option to reset the slider back to default.
    end.
    Worked better then.

  3. #3
    Join Date
    Jul 2007
    Location
    Melbourne, Victoria, Australia.
    Posts
    665
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    1. Clear Runescape Cache.
    2. Open up Runescape either in Browser or Client Let it load up fully / then close.
    3. Open simba, run script, should work.
    4. If not slide the fps bar all the way to the top.
    Last known as Jonno.

  4. #4
    Join Date
    May 2012
    Location
    Runescape
    Posts
    139
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you see the little slider on the right side of the SMART client, slide it up and it should load faster.

  5. #5
    Join Date
    May 2012
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    okay thank you, now it has loaded.

    Next issue, it doesn,t enter my account info im running MSI

    I don't understand why im having so many issues setting it up on this computer *facepalm*

  6. #6
    Join Date
    May 2012
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    side note: I filled out all of the GUI.

    1 account running Karmaja Stiles noter
    2. Dranyor Willows

    dont know if thats of any use to yall


    Just ran and SRL script it loads and then doesn't enter the account information(yes I entered it in the script, when it didn't input it
    Last edited by Abusch2013; 06-14-2012 at 02:19 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
  •