Results 1 to 3 of 3

Thread: Scripts cant use preset quickload

  1. #1
    Join Date
    Jul 2007
    Posts
    83
    Mentioned
    1 Post(s)
    Quoted
    39 Post(s)

    Default Scripts cant use preset quickload

    Opens up bank but fails when to quickload preset, so it stays on bank screen doing nothing.

    Other scripts seem to be doing the same thing. Fails to click the preset button.

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

    Default

    Quote Originally Posted by scar_operater View Post
    Opens up bank but fails when to quickload preset, so it stays on bank screen doing nothing.

    Other scripts seem to be doing the same thing. Fails to click the preset button.
    i used to use this when i botted rs3 and it did not work because of SMART. It tries to withdraw the preset touching "1" and not by clicking and sometimes SMART bugs out and keyboard input stops working. Well, atleast that was what happened to me...

    I used it like this:

    Simba Code:
    function preset1: boolean;
    var
      failSafe: TTimeMarker;
    begin

      if not isLoggedIn then
        exit;

      failsafe.start();
      repeat
      bankscreen.clickButton(Bank_BUTTON_PRESET_1, true);
        wait(gaussRangeInt(300, 400));
      until (not bankscreen.isOpen) or (failsafe.getTime() > 30000);

      if (failsafe.getTime() > 30000) then
        result := false
      else result := true;

    end;
    Formerly known as Undorak7

  3. #3
    Join Date
    Oct 2012
    Posts
    1,258
    Mentioned
    40 Post(s)
    Quoted
    588 Post(s)

    Default

    Quote Originally Posted by Lipcot View Post
    sometimes SMART bugs out and keyboard input stops working.
    Not a SMART issue, that also happens on the vanilla client.

    I personally use the keyboard to try to use the preset and if the screen hasn't gone away within a few seconds I then use clicking as a failsafe, since that's roughly what I'd do if playing legit.

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
  •