Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

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

The only thing Alpha about me is my bots
Joined
Sep 22, 2014
Messages
618
Soo, here's what happens when my script tries to bank:

Youtube video removed


Here's the banking task:
Code:
package jsuperheater.tasks;

import jsuperheater.Superheater;

import com.runemate.game.api.hybrid.local.hud.interfaces.Bank;

import shared.Task;

public class TestBanker extends Task{

    @Override
    public boolean activate() {

        if (!Bank.isOpen()) {
            Superheater.status = "Bank not open. Opening bank.";
            return true;
        } else {
            Superheater.status = "Bank already open. Not opening bank.";
            return false;
        }
    }

    @Override
    public void execute() {
        Bank.open();
    }

}
 
Last edited:
Top