Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 52

Thread: New runescape update (Lobby changed)

  1. #26
    Join Date
    Jul 2014
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    Goddammit Jagex, leave us alone!

    Is the lobby and the actionbar minimize button the only things that've changed?
    Twitch has been added to RuneScape,you can livestream direct with pressing a button

  2. #27
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Grumble View Post
    Twitch has been added to RuneScape,you can livestream direct with pressing a button
    Has it displaced any other parts of the UI?
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  3. #28
    Join Date
    Jul 2014
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    Has it displaced any other parts of the UI?
    The only things I know is that the Lobby is changed and also that Twitch

  4. #29
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Grumble View Post
    The only things I know is that the Lobby is changed and also that Twitch


    There's a bonds pouch now
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  5. #30
    Join Date
    Jul 2014
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post


    There's a bonds pouch now
    Isn't that useless?

  6. #31
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Grumble View Post
    Isn't that useless?
    I mean it allows you to access your bonds from everywhere
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  7. #32
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Jake View Post
    In case you Guys aren't aware..

    1) Google has sealed the deal to buy Twitch for $1 Billion USD
    2) Jagex has implemented twitch streaming service on their client
    3) View botting is getting common on twitch RS streamers.
    Ingame google ads confirmed?

  8. #33
    Join Date
    Jul 2014
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    I mean it allows you to access your bonds from everywhere
    Just the same like your money pouch but just for bonds,right?

  9. #34
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Grumble View Post
    Just the same like your money pouch but just for bonds,right?
    Basically.

    Really super bad fix for lobby.isOpen()

    Simba Code:
    function TRSLobby.isOpen():boolean; override;
    var
      tpa:TPointArray;
      theBox:TBox;
    begin
      theBox := intToBox(107, 24, 187, 42);
      result := findColorsTolerance(tpa, 238801, theBox, 10);
    end;



    Uses that^
    Last edited by KeepBotting; 07-28-2014 at 09:37 PM.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  10. #35
    Join Date
    Jul 2014
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    Basically.

    Really super bad fix for lobby.isOpen()

    Simba Code:
    function TRSLobby.isOpen():boolean; override;
    var
      tpa:TPointArray;
      theBox:TBox;
    begin
      theBox := intToBox(107, 24, 187, 42);
      result := findColorsTolerance(tpa, 238801, theBox, 10);
    end;



    Uses that^

    Thanks

  11. #36
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    If anyone wants a quick fix just to login (no world switching etc.) replace the lobby.simba file in C:\Simba\Includes\srl-6\lib\interfaces\lobby with the one attached to this post.

    EDIT: Also attached turps actionbar fixes
    Attached Files Attached Files
    Last edited by The Mayor; 07-28-2014 at 10:12 PM.

  12. #37
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    If anyone wants a quick fix just to login (no world switching etc.) replace the lobby.simba file in C:\Simba\Includes\srl-6\lib\interfaces\lobby with the one attached to this post.
    You beat me by like two minutes, yours is probably better than mine but I figure I'll pitch in anyway.

    Put these four functions in your script, anywhere above your mainloop. Two of them override (broken) SRL routines, one is new, and one is just a wrapper.

    Simba Code:
    function TRSLobby.isOpen():boolean; override;
    var
      tpa:TPointArray;
      theBox:TBox;
    begin
      theBox := intToBox(107, 24, 187, 42);
      result := findColorsTolerance(tpa, 238801, theBox, 10);
      if (result) then
       writeln('TRSLobby.isOpen (override): the lobby is open')
      else
       writeln('TRSLobby.isOpen (override): the lobby is not open');
    end;

    function TRSLobby.findPlayButton():boolean; overload;
    var
      tpa:TPointArray;
      theBox:TBox;
    begin
      theBox := intToBox(318, 519, 480, 544);
      result := findColorsTolerance(tpa, 2595296, theBox, 18);
      if (result) then
       writeln('TRSLobby.findPlayButton (override): found the play button')
      else
       writeln('TRSLobby.findPlayButton (override): did not find the play button');
    end;

    function TRSLobby.clickPlay():boolean;
    var
      tpa:TPointArray;
      theBox:TBox;
    begin
      theBox := intToBox(318, 519, 480, 544);
      mouseBox(theBox, MOUSE_LEFT);
      result := true;
      writeln('TRSLobby.clickPlay: clicked the play button');
    end;

    function loggedIn():boolean;
    begin
      result := isLoggedIn();
    end;

    and the log in your player like this:

    Simba Code:
    players[currentPlayer].loginToLobby();
     if lobby.isOpen() and lobby.findPlayButton() then
       begin
        lobby.clickPlay();
        waitFunc(@loggedIn, randomRange(100, 500), randomRange(5000, 10000));
       end;
    Last edited by KeepBotting; 07-28-2014 at 11:08 PM. Reason: updated
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  13. #38
    Join Date
    Jul 2014
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    28 Post(s)

    Default

    Hmm smart stopped working i can't get smart to work with the new login and action bar ..o.o

  14. #39
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Machu View Post
    Hmm smart stopped working i can't get smart to work with the new login and action bar ..o.o
    Read the two posts directly above yours for the solution.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  15. #40
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  16. #41
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    everything but worldswitching should be good... idk how long it will take the updates to go out. You can still use quick select worlds while I finish the rest tonight

  17. #42
    Join Date
    Jun 2014
    Posts
    463
    Mentioned
    27 Post(s)
    Quoted
    229 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    everything but worldswitching should be good... idk how long it will take the updates to go out. You can still use quick select worlds while I finish the rest tonight

    Thanks buddy.
    Tsunami

  18. #43
    Join Date
    Jun 2014
    Posts
    463
    Mentioned
    27 Post(s)
    Quoted
    229 Post(s)

    Default

    Can't do much right now, still trying to contribute while I'm working on the new house. (Can barely load RS right now)

    Selected world color 5387776 tol 0
    Tsunami

  19. #44
    Join Date
    Jul 2014
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    55 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    everything but worldswitching should be good... idk how long it will take the updates to go out. You can still use quick select worlds while I finish the rest tonight
    Thank you! It works.

  20. #45
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by theorange View Post
    Thank you! It works.
    np I won't be able to get to finishing the worldswitcher stuff until tomorrow night. Unless someone else beats me to it!

  21. #46
    Join Date
    Jul 2014
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    55 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    np I won't be able to get to finishing the worldswitcher stuff until tomorrow night. Unless someone else beats me to it!
    Haha I'll start racing you on updates once I get up to speed with the simba documentation :P.

  22. #47
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by theorange View Post
    Haha I'll start racing you on updates once I get up to speed with the simba documentation :P.
    haha do it! always good to have more and more contributors to the include!

  23. #48
    Join Date
    Jul 2007
    Location
    Paris
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    hEY GUYS
    oops sorry wrong cap locks


    I put the files in the right directories in order to update... but my charac doesn't move from a finger... nothing happening...

    edit : the bot allmost entered the half of my password on the rs chat....
    Last edited by Xlr; 07-30-2014 at 12:53 AM.

  24. #49
    Join Date
    Sep 2007
    Location
    Australia, NSW
    Posts
    934
    Mentioned
    6 Post(s)
    Quoted
    145 Post(s)

    Default

    Quote Originally Posted by Xlr View Post
    hEY GUYS
    oops sorry wrong cap locks
    Not necessary.

    Quote Originally Posted by Xlr View Post
    I put the files in the right directories in order to update... but my charac doesn't move from a finger... nothing happening...

    edit : the bot allmost entered the half of my password on the rs chat....
    You don't need to put files anywhere, because SRL has been updated. All you need to do is update SRL:
    • SRL > Settings > Override Update (checked)
    • SRL > Update

    INACTIVE
    How-to: Make S.M.A.R.T. less laggy

    Sell me your Maple Shieldbows (u)! Up to 95gp ea!

    My Scripts:
    Ivy Chopper Ultra [RS3] | Fantastic Fletcher [RS3]
    99 x78 | 99 x10 | 99 x2 | 99 x12


    Use the REPORT tags when posting progress reports to make life easier (:
    [REPORT]Put progress report in here![/REPORT]

    Super Savvy Smither V1.06Cool Classy Cooker V1.02 [EoC]

  25. #50
    Join Date
    Jul 2007
    Location
    Paris
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by Press Play View Post
    Not necessary.


    You don't need to put files anywhere, because SRL has been updated. All you need to do is update SRL:
    • SRL > Settings > Override Update (checked)
    • SRL > Update
    Yeah sorry, I was a bit drunk yesterday blblbl !

    It ok, I done the updates (after replacing the files like I said), bot is starting, world picking without problem, but doesn't react after init the compass...

    Simba Code:
    ---- TRSMinimap.clickCompass(): Clicked compass
    ---- TRSGameTab.__initTabs(): Setup gametab properties

    Then he doesn't move from a finger.. Any idea guys ? :x (ps : yeah, interface is well setuped-up) (pss : yeah I'm creating new words !)
    Thanks guys !

Page 2 of 3 FirstFirst 123 LastLast

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
  •