02-06-2015, 01:34 AM
Open your version of the code. Replace every sleep function with something similar to this:
This will randomize the sleep, or pause, of the bot. The above code will randomly sleep between 1 and 2 seconds. Adjust your values as needed.
Code:
Sleep ((Random(1000, 2000, 1))
This will randomize the sleep, or pause, of the bot. The above code will randomly sleep between 1 and 2 seconds. Adjust your values as needed.