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
  • How to Optimize Item Selection for My Bot?


    ToastLover

    Recommended Posts

    I wrote this to partially do what you're talking about:

     
    private void grabBankItem(int[] itemIDs) {
            for (int i : itemIDs) {
                if (!Equipment.contains(i) && !Inventory.contains(i) && Bank.contains((i))) {
                    Bank.withdraw(i);
                    break;
                }
            }
        }


    Now i can just call that for any equipment I need instead of the stock bank withdraw. It prioritizes the list from first to last. Specifically, I use this for getting the lowest uses jewellery like dueling rings. In your case, you can pass in the IDs of all the items for a certain slot from BIS to worst and itll get that for you. Wouldn't be hard to change it to strings.

     

    grabBankItem(new int[]{11190,11191,11192,11193,11194});


    This gets me the weakest Digsite pendant that I own.

    Edited by TunaTuna
    Link to comment
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    ×
    ×
    • 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.