uyfgfarOS Posted January 5, 2017 Posted January 5, 2017 How do you open the grand exchange window? I was original using .openGE(); but now that I'm using the default API I can't figure out how to open it! public void sellItem() throws InterruptedException { //Open GE OPEN GE WINDOW sleep(random(500,900)); grandExchange.sellItem(256, 539, 224); sleep(random(5000,6000)); grandExchange.confirm();
Juggles Posted January 6, 2017 Posted January 6, 2017 NPC clerk = getNpcs.closest("Grand Exchange Clerk");if (clerk!=null) { clerk.interact("Exchange") }
yx0x Posted October 13, 2021 Posted October 13, 2021 Updating the post, this worked for me. // Open a Grand Exchange window NPC clerk = getNpcs().closest("Grand Exchange Clerk"); if (clerk!=null) { clerk.interact("Exchange"); }