java.lang.Object
net.botwithus.rs3.script.Execution
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleandelay(long time) Delays the scripting thread for x amount of timestatic booleandelayExt(ScriptDelay delay) static booleandelayUntil(long timeout, Callable<Boolean> predicate) Delays the current thread for a timeout or until the predicate is met.static booleandelayUntil(Callable<Boolean> predicate, Callable<Boolean> continuation, long timeout) static booleandelayUntil(Predicate<LocalPlayer> predicate, long timeout, TimeUnit unit) static booleandelayWhile(long timeout, Callable<Boolean> predicate) Delays the current thread for a timeout or until the predicate is met.
-
Method Details
-
delayExt
-
delayUntil
-
delayUntil
-
delay
public static boolean delay(long time) Delays the scripting thread for x amount of time- Parameters:
time- The time in milliseconds
-
delayUntil
Delays the current thread for a timeout or until the predicate is met.- Parameters:
timeout- The timeoutpredicate- The predicate
-
delayWhile
Delays the current thread for a timeout or until the predicate is met.- Parameters:
timeout- The timeoutpredicate- The predicate
-