Originally Posted by
zEEneXx
can't make it more random any more. every mouse action and waypoints are random
blizzard just know that:
You can add a random sleep timer function like:
Code:
Func RandSleep($min = 30, $max = 60, $chance = 5)
$randNum = Round(Random(1, 100))
If $Timer == True And $randNum <= $chance Then
$sleepTime = Random($min*1000, $max*1000)
GUICtrlSetData($lblStatus, "Status: Random Sleep - " & Round($sleepTime / 1000) & " secs")
For $c = 0 To 10
Sleep($sleepTime/10)
ConsoleWrite("|")
Next
ConsoleWrite(@CRLF)
EndIf
EndFunc
Then insert:
Code:
RandSleep(60, 240, 10)
Basically says, 10% chance to take a 60-240 second break. Just insert different RandSleep to different parts of the script. Like after looting, before entering the game, after town portal, etc etc.
I had a lot of RandSleep(5,10,3) in my code. Just to keep the game times different.