While creating my own bots and reviewing those that are open source/on github, I've noticed a varying amount of randomness employed by these bots and ended up questioning, "What are some best practices to be aware of when creating bots to avoid an account that uses it from being banned?"
It...
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...