When I script, I often use things like
if(Random.nextDouble() < 0.998)
{
Execution.delay(Random.nextGaussian(someMin, someMax, someMean, someDeviation);
}
else Execution.delay(Random.nextGaussian(aLargeNumber, anotherLargeNumber, aLargeMean));
the point of which is to have realistic mouse...