gripper, - 1. Use Random as the argument to Sleep: Sleep(Random(1000, 10000, 1))This will sleep for a random time between 1 and 10 seconds. - 2. Use an array to store the times and then use Random to choose which element to use: Global $aTimes[5] = [1, 3, 5, 7, 9]
Sleep(1000 * $aTimes[Random(0, 4, 1)])You get sleeps of 1, 3, 5, 7 or 9 seconds. All clear? M23