Si esta con un crypter (RunTime) hace un volcado de memoria.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú$Handle1 = DllCallbackRegister("hilo", "int", "ptr")
Func CreateThread($Handle, $struct)
$return = DllCall("kernel32.dll", "hwnd", "CreateThread", "ptr", 0, "dword", 0, "long", DllCallbackGetPtr($Handle), "ptr", DllStructGetPtr($struct), "long", 0, "int*", 0)
Return $return[0]
EndFunc
$Struct1 = DllStructCreate("Char[200];int")
DllStructSetData($Struct1, 1, 10)
CreateThread($Handle1, $Struct1)
MsgBox(0x40, "Normal", "Hola mundo")
Func hilo($x)
$y = DllStructCreate("char[200];int", $x)
MsgBox(0x40, "Desde hilo", "Soy un hilo")
EndFunc
AdlibRegister("Tufuncion",10*1000)
;aquí tu código para Buscar
Func Tufuncion()
;aqui el codigo para clikear.
EndFunc
Local $begin = TimerInit()
Local $dif=0
while 1
$dif=TimerDiff($begin)
if $dif >=10000 then
msgbox(0,"","Hago clik")
$begin = TimerInit()
endif
wend