Have a look at overriding the solver.
Use RandomManager's registerSolver function to register your custom dismiss solver. Have your custom solver inherit from DismissSolver but override its shouldExecute function by your own which takes into account the delay.
Here's a draft..
public class YourScript extends AbstractScript {
...
@Override
public void onStart() {
getRandomManager().registerSolver(new CustomDismissSolver());
}
...
}
public class CustomDismissSolver e
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Recommended Posts
Posted by Hashtag,
5 reactions
Go to this post
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 accountSign in
Already have an account? Sign in here.
Sign In Now