Jump to content

ConditionalSleep not working with shops


Recommended Posts

Posted

You're constructing a new ConditionalSleep, but never using it so ofcourse it isn't working!

You're going to need the call sleep method:

ConditionalSleep awaitShop = new ConditionalSleep(Script.random(4000, 8000)) {
  @Override
  public boolean condition() {
 	 return store.isOpen();
  }
};

if (shop.interact("Trade") && awaitShop.sleep()) {
  log("hi!");
}

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...