Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Banking


    Sacred

    Recommended Posts

    I know I can use this code below to bank at Varrock East.

    public void execute() {
    if (api().getBank().isOpen()) {
    withdrawItems();
    } else {
    api().getBank().open(BankLocation.VARROCK_EAST);
    }
    }
    

    But can I define varrock_east as a variable to a specific tile for any bank I want it to use or how would I do that?

     

    Couldn't I change it to the code below if the bank is close to me and it will go to the nearest bank?

     

     

    public void execute() {
    if (api().getBank().isOpen()) {
    withdrawItems();
    } else {
    api().getBank().open(BankLocation.getNearest(Entity entity));
    }
    }
    
    Link to comment
    Share on other sites

    public void execute() {
    if (api().getBank().isOpen()) {
    withdrawItems();
    } else {
    if (Area.contains(getLocalPlayer.getTile)) {
    api().getBank().open();
    }
    }
    }
    

    that's my solution, define a area for a bank then check if the player is inside it. I think this is what you're trying to get at?

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.