Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Suggestion] More human bot
#6
I can't guarantee it will work as I have not really figured out what they are doing with the function but, you can try changing this function:
Code:
Func _Sleep($iDelay, $iSleep = True)
    Local $iBegin = TimerInit()
    While TimerDiff($iBegin) < $iDelay
        If $RunState = False Then Return True
        If $iSleep = True Then Sleep(100)
    WEnd
    Return False
EndFunc   ;==>_Sleep

Code:
Func _Sleep($iDelay, $iSleep = True)
    Local $RandomNumber = Random (100, 1000, 1)
    Local $iBegin = TimerInit()
    While TimerDiff($iBegin) < $iDelay
        If $RunState = False Then Return True
        If $iSleep = True Then Sleep($RandomNumber)
    WEnd
    Return False
EndFunc   ;==>_Sleep

This changes your sleep time randomly from .1 seconds to 1 second, every time the sleep function is called. Keep in mind, this will effect all of your script.
Reply
 


Messages In This Thread
[Suggestion] More human bot - by pubeoutros - 02-06-2015, 01:26 AM
RE: [Suggestion] More human bot - by Snarg - 02-06-2015, 01:34 AM
RE: [Suggestion] More human bot - by pubeoutros - 02-06-2015, 01:41 AM
RE: [Suggestion] More human bot - by Snarg - 02-06-2015, 01:46 AM
RE: [Suggestion] More human bot - by pubeoutros - 02-06-2015, 01:53 AM
RE: [Suggestion] More human bot - by Snarg - 02-06-2015, 02:14 AM
RE: [Suggestion] More human bot - by dinobot - 02-06-2015, 02:15 AM
RE: [Suggestion] More human bot - by Snarg - 02-06-2015, 03:20 AM
RE: [Suggestion] More human bot - by Explicit - 02-06-2015, 02:28 AM
RE: [Suggestion] More human bot - by pubeoutros - 02-07-2015, 05:34 AM
RE: [Suggestion] More human bot - by Explicit - 02-07-2015, 08:09 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)

About The Bytecode Club

We're a community focused on Reverse Engineering, we try to target Java/Android but we also include other langauges/platforms. We pride ourselves in supporting and free and open sourced applications.

Website