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