Package org.dreambot.api.randoms
Class BankPinSolver
- java.lang.Object
-
- org.dreambot.api.randoms.RandomSolver
-
- org.dreambot.api.randoms.BankPinSolver
-
- All Implemented Interfaces:
java.util.EventListener,PaintListener
public class BankPinSolver extends RandomSolver
-
-
Constructor Summary
Constructors Constructor Description BankPinSolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intonLoop()Runs as long as shouldExecute returns true; This method must be overriddenvoidonStart()Runs once when the random solver first activates; This method can be optionally overriddenbooleanshouldExecute()Checks whether the random even solver should execute; This method must be overridden-
Methods inherited from class org.dreambot.api.randoms.RandomSolver
disable, enable, getDebugInfo, getEventString, getMinimumRest, isEnabled, isForceDisable, lastRan, onFinish, onPaint, onPaint, setForceDisable
-
-
-
-
Method Detail
-
shouldExecute
public boolean shouldExecute()
Description copied from class:RandomSolverChecks whether the random even solver should execute; This method must be overridden- Specified by:
shouldExecutein classRandomSolver- Returns:
- true as long as the random executor should be executing
-
onStart
public void onStart()
Description copied from class:RandomSolverRuns once when the random solver first activates; This method can be optionally overridden- Overrides:
onStartin classRandomSolver
-
onLoop
public int onLoop()
Description copied from class:RandomSolverRuns as long as shouldExecute returns true; This method must be overridden- Specified by:
onLoopin classRandomSolver- Returns:
- time to delay before next onLoop
-
-