Token Posted January 19, 2016 Posted January 19, 2016 Does anyone know where they are? Eclipse suggests they would be in org.osbot.rs07.utility which is not in the docs at all...
Flamezzz Posted January 19, 2016 Posted January 19, 2016 If there's no documentation then just create it yourself ^^
FrostBug Posted January 19, 2016 Posted January 19, 2016 It is a bit worrying tho, since as Alek has previously implied; if it's not in the API docs, it may be removed without notice at any time. 1
Joseph Posted January 22, 2016 Posted January 22, 2016 private void conditionalSleep(int amount, boolean condition) { new ConditionalSleep(amount) { @Override public boolean condition() throws InterruptedException { return condition; } }.sleep(); } Does anyone know where they are? Eclipse suggests they would be in org.osbot.rs07.utility which is not in the docs at all... you wont find the doc in the api but the class and interface are there. I use them in my script