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
  • Redeem a bond


    Aeglen

    Recommended Posts

        public Boolean redeemBond() {
            if (getGrandExchange().isOpen()) {
                sleepUntil(() -> getGrandExchange().close(), delay(4000));
            }
            sleepUntil(() -> getInventory().interact(BOND,"Redeem"), delay(3000));
            sleep(delay(400));
            WidgetChild single = getWidgets().getWidgetChild(66,7);
            sleepUntil(() -> single.interact("1 Bond"), delay(3000));
            sleep(delay(400));
            WidgetChild confirm = getWidgets().getWidgetChild(66,24);
            sleepUntil(() -> confirm.interact("Confirm"), delay(3000));
            sleep(delay(1000));
            getTabs().logout();
            return Boolean.TRUE;
        }

    Assumes the bond is in the inventory.

    Tested once, but don't see why it wouldn't work unless the buttons are extra laggy. A better way of doing this might be to sleepUntil (66,24) has "Confirm" as text, but I didn't think of this before testing it on the single bond I had at the time (gotta save gpz for annoying weekly-fluctuating resource prices).

    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.