Results 1 to 7 of 7

Thread: Help with banking

  1. #1
    Join Date
    Nov 2011
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help with banking

    hey guys im a bit of a noob. Im using the method "Openbank('vwb', false, false)" And what the script does is right click the banker and then moves the mouse away from the banker so kinda opens the menu then closes the menu.
    Last edited by frazboyz101; 01-15-2012 at 01:43 AM.

  2. #2
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    go to c\simba\includes\srl\srl\core
    and open bank.simba
    I think 'BankScreen' is a function in there?
    If BankScreen Then

  3. #3
    Join Date
    Nov 2011
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yea that works but not im having issues opening the bank

  4. #4
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    In bank.simba there are also a bunch of bank opening procedures too you can use one of those, or write your own.

    Watch my runescape scripting tutoral (Tutorial #2 parts 1 and 2) and use the method I use to find trees, but instead apply it to bankers. Also watch the AutoColorAid tutorial.

    Those two together should enable you to make your own.

  5. #5
    Join Date
    Nov 2011
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could you tell me whats wrong with this
    Code:
    if not (IsMoving) then
          begin
            if FindObj(x, y, 'ooth', 1457483, 35) then
              begin
              repeat
              KeyDown(VK_UP);
              wait(100 + Random(500));
              OpenBankNPC;
              until BankScreen;
                  repeat
                    Wait(1000 + Random(1000));
                    WriteLn('custom banking');
                    DepoAllfraz;
                    Wait(250 + Random(500));
                  until not InvFull;
                CloseBank();
                Wait(500 + Random(1000));
                Banked := True
    
              end;
    
              WriteLn('Done Banking.');
              Inc(Loads);
              Progress;
          end;
        until (Banked)
    end;

  6. #6
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Would be best if you put entire script, and what are you trying to do in that peice of code? What exactly is going wrong?

  7. #7
    Join Date
    Nov 2011
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well it right clicks on the banker then stops and does that again and again. In that peice of code. Open the change the cam angle up and then open the bank then deposit all then close the bank.

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
  •