Delivery Posted September 4, 2023 Share Posted September 4, 2023 I can't find any documentation on cancel offer method, Do I have to grab widgets and make my own methods ? Quote Link to comment Share on other sites More sharing options...
skillerkidos1 Posted September 4, 2023 Share Posted September 4, 2023 When I did it I had to make my own Quote Link to comment Share on other sites More sharing options...
BackToRS Posted September 4, 2023 Share Posted September 4, 2023 Yeah i think you can make your own Quote Link to comment Share on other sites More sharing options...
Alakazizam Posted September 4, 2023 Share Posted September 4, 2023 This is a little piece of code I use for canceling box 1. First Widget is to open the trade, second is the cancel button. You'd have to change the first set of widget ID's for each box if (getGrandExchange().getStatus(GrandExchange.Box.BOX_1) == PENDING_BUY) { getWidgets().interact(465, 7, 2, "View Offer"); sleep(random(1000, 2500)); getWidgets().interact(465, 23, 0, "Abort offer"); sleep(random(1000, 2500)); getGrandExchange().close(); } 1 Quote Link to comment Share on other sites More sharing options...