1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Resolved [Urgent] Bank.IsOpen always returns false!!!

Discussion in 'Client & Site Support' started by Eagles13, Sep 27, 2014.

  1. Eagles13

    Eagles13 The only thing Alpha about me is my bots

    Joined:
    Sep 22, 2014
    Messages:
    618
    Likes Received:
    186
    Soo, here's what happens when my script bot tries to bank:

    Youtube video removed


    Here's the banking task:
    Code (Text):
    1. package jsuperheater.tasks;
    2.  
    3. import jsuperheater.Superheater;
    4.  
    5. import com.runemate.game.api.hybrid.local.hud.interfaces.Bank;
    6.  
    7. import shared.Task;
    8.  
    9. public class TestBanker extends Task{
    10.  
    11.     @Override
    12.     public boolean activate() {
    13.  
    14.         if (!Bank.isOpen()) {
    15.             Superheater.status = "Bank not open. Opening bank.";
    16.             return true;
    17.         } else {
    18.             Superheater.status = "Bank already open. Not opening bank.";
    19.             return false;
    20.         }
    21.     }
    22.  
    23.     @Override
    24.     public void execute() {
    25.         Bank.open();
    26.     }
    27.  
    28. }
    29.  
     
    #1 Eagles13, Sep 27, 2014
    Last edited: Oct 1, 2014
  2. Cloud

    Cloud Engineer

    Joined:
    Jul 28, 2013
    Messages:
    2,777
    Likes Received:
    1,124

Share This Page

Loading...