- Joined
- Dec 18, 2014
- Messages
- 398
- Thread Author
- #1
When I script, I often use things like
the point of which is to have realistic mouse delays, including rare instances of delays of 30 seconds or more. But should we be doing this? Or should we rely on whatever delays the client has personalized for the user?
Code:
if(Random.nextDouble() < 0.998)
{
Execution.delay(Random.nextGaussian(someMin, someMax, someMean, someDeviation);
}
else Execution.delay(Random.nextGaussian(aLargeNumber, anotherLargeNumber, aLargeMean));