July 4, 201510 yr Nevermind just had to build the path. This is my code: public void bank() throws InterruptedException { if(!this.getBank().isOpen() && this.inventory.isFull() && !this.myPlayer().isMoving()) { objects.closest(bBooth).interact("Bank"); sleep(random(977, 1777)); } if (this.getBank().isOpen()) { this.getBank().depositAllExcept("Mind rune"); sleep(random(377, 544)); this.getBank().close(); sleep(random(99, 1111)); } sleep(random(100, 500)); this.log("State: bank"); } However, the depositAllExcept("Mind rune") gives an error concerning item. Which looks like this: Does someone know what is going on? It looks like there is something wrong with the Items? Edited July 4, 201510 yr by Buitenspel
Create an account or sign in to comment