Token Posted January 19, 2016 Share 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... Quote Link to comment Share on other sites More sharing options...
Acerd Posted January 19, 2016 Share Posted January 19, 2016 Doesnt exist. Quote Link to comment Share on other sites More sharing options...
Flamezzz Posted January 19, 2016 Share Posted January 19, 2016 If there's no documentation then just create it yourself ^^ Quote Link to comment Share on other sites More sharing options...
FrostBug Posted January 19, 2016 Share 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 Quote Link to comment Share on other sites More sharing options...
Joseph Posted January 22, 2016 Share 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 Quote Link to comment Share on other sites More sharing options...