Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question How does delays work together?

Joined
Feb 23, 2018
Messages
6
How does delays work together?

// code example for LoopingBot \\

public void onStart() {
setLoopDelay(200,400); // let's say it produces y


public void onLoop() {
Execution.delay(x);
}

Is the final delay between loops x+y or x?

And what would be answer if to use Thread.sleep(x) ?

(also how can I join Runemate Slack channel?)
 
Top