Waffe Posted February 24, 2018 Share Posted February 24, 2018 while(getInventory().contains(vials)){ getInventory().getItem(vials).interact("Open"); sleep(random(80,200)); } Is there any technique to make it so that it doesn't wait for the vial pack to disappear THEN moving on to the next vial pack? Makes this very bot like as with the packs you can spam click open per tick per item or something, any help appreciated. Changing the sleep just makes it so it does not spam one item. Quote Link to comment Share on other sites More sharing options...
scriptersteve Posted February 24, 2018 Share Posted February 24, 2018 (edited) you could click by position rather than item and just spam the positions - never done it myself but probably work Edited February 24, 2018 by scriptersteve 1 Quote Link to comment Share on other sites More sharing options...
Apaec Posted February 24, 2018 Share Posted February 24, 2018 You might find this useful : https://github.com/apaec/aio-herblore/blob/master/src/uk/co/ramyun/herblore/util/InventoryNavigator.java I know it's not exactly the same but it's a similar concept! (: -Apa 1 Quote Link to comment Share on other sites More sharing options...