Results 1 to 23 of 23

Thread: RS Update - Lost City of The Elves 21/9/2014

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

    Default RS Update - Lost City of The Elves 21/9/2014



    Runescape login screen got updated which means players[].login() will no longer work.

    If anyone wants a quick fix before official update, go to C:\Simba\Includes\SRL-6\lib\core and open players.simba

    Scroll down to __setInputBoxes() and replace the whole function with:

    Simba Code:
    {*
    __setInputBoxes()
    ~~~~~~~~~~~~~~~~~

    .. code-block:: pascal

        function __setInputBoxes(): boolean;

    Finds and sets the username and password box parameters.  This function is
    designed to work with any screen size.  Returns true if both boxes are found.

    .. note::

        - by Coh3n
        - Last updated: 22nd September 2014 by The Mayor

    Example:

    .. code-block:: pascal

        __setInputBoxes();
    *}

    {$IFNDEF CODEINSIGHT}
    const
      __ACTIVE_BORDER_LENGTH = 524;
      __INACTIVE_BORDER_LENGTH = 525;
    function __setInputBoxes(): boolean;
    var
      tpaActive, tpaInactive: TPointArray;
      bdsActive, bdsInactive: TBox;
      w, h: integer;
    begin
      getClientDimensions(w, h);

      findColors(tpaActive, 6774863, 0, 0, w-1, h-1); // active box border color
      findColors(tpaInactive, 6906451, 0, 0, w-1, h-1); // inactive box border color

      if (length(tpaActive) = __ACTIVE_BORDER_LENGTH) and (length(tpaInactive) = __INACTIVE_BORDER_LENGTH) then
      begin
        result := true;
        print('__setInputBoxes(): Set username and password boxes', TDebug.SUB);

        bdsActive := tpaActive.getBounds();
        bdsInactive := tpaInactive.getBounds();

        // sets the username box as the box that's closer to the top of the screen
        if (bdsActive.y1 < bdsInactive.y1) then
        begin
          _boxUsername := bdsActive;
          _boxPassword := bdsInactive;
        end else begin
          _boxUsername := bdsInactive;
          _boxPassword := bdsActive;
        end;
      end;
    end;
    {$ENDIF}

  2. #2
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Thanks @The Mayor;

    Forum account issues? Please send me a PM

  3. #3
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

  4. #4
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by Clarity View Post
    This update is a gamechanger...a ton of easily scripted, high XP/hour methods.
    But the requirements are insane!

    Forum account issues? Please send me a PM

  5. #5
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

  6. #6
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    @Justin; faps on this update

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

    Default

    Thanks for this
    Tsunami

  8. #8
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    @Justin; faps on this update
    You don't understand how good this is for people who legit haha

    Forum account issues? Please send me a PM

  9. #9
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by Justin View Post
    You don't understand how good this is for people who legit haha
    How good is it for legitters? lol

  10. #10
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by kevin View Post
    how good is it for legitters? Lol
    Amazing xp!

    Forum account issues? Please send me a PM

  11. #11
    Join Date
    Aug 2014
    Location
    Australia
    Posts
    932
    Mentioned
    53 Post(s)
    Quoted
    495 Post(s)

    Default

    What's legitting?

    Thanks for the quick fix, Mayor, worked like a charm.
    Last edited by Incurable; 09-22-2014 at 01:00 PM.



    New to scripting? Procedures & Functions for Beginners
    Do you use your computer at night? Just get f.lux

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

    Default

    I can't look at the RS website from this client site, can someone post the update details and such?

  13. #13
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    I can't look at the RS website from this client site, can someone post the update details and such?
    Can you check skype? Justin posted a lot of pics there

  14. #14
    Join Date
    Dec 2011
    Posts
    266
    Mentioned
    16 Post(s)
    Quoted
    185 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    I can't look at the RS website from this client site, can someone post the update details and such?
    Update:



    Patch Notes:


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

  16. #16
    Join Date
    Dec 2013
    Location
    UK
    Posts
    106
    Mentioned
    4 Post(s)
    Quoted
    61 Post(s)

    Default

    whoa, thank you! much love

  17. #17
    Join Date
    Mar 2013
    Location
    Argentina
    Posts
    758
    Mentioned
    27 Post(s)
    Quoted
    365 Post(s)

    Default

    love yaaa.

    and yes, that elf city has insane reqs

  18. #18
    Join Date
    Jun 2012
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    Works, you can mine gems in there, and potentially get onyx about 2m ge price moust likely will crash, but its about 2m an hour,

  19. #19
    Join Date
    Jun 2014
    Location
    Vancouver
    Posts
    150
    Mentioned
    1 Post(s)
    Quoted
    89 Post(s)

    Default

    Thank you my buddy Mayor this works great

  20. #20
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    I would rep you if I could, but alas, I must spread 'er around.

    Nice work!

  21. #21
    Join Date
    Jan 2012
    Location
    Long Island, NY
    Posts
    413
    Mentioned
    5 Post(s)
    Quoted
    95 Post(s)

    Default

    I thought divination and summoning was supposed to be the first batch released?

  22. #22
    Join Date
    Jun 2006
    Posts
    694
    Mentioned
    0 Post(s)
    Quoted
    31 Post(s)

    Default

    Quote Originally Posted by Brotein View Post
    I thought divination and summoning was supposed to be the first batch released?
    The vote was for either Invention or Elves. Losing vote would be released at a later date.

  23. #23
    Join Date
    Jul 2014
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    24 Post(s)

    Default

    Thanks Mayor you fixed my problem... Just some scripts must be outdated and do not login. I tried with your VEB mining script and it worked fine. Thank you
    99's Achieved using Simba
    - 99 Divination thanks to AIO Divination script by Solaire
    - 99 Woodcutting thanks to IvyChopperUltra and Draynor Chop N' Bank by Press Play and Coh3n

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
  •