Quote:
Originally Posted by dreamerdd
so ur script on work with the game minized or the game fullscreen or both?k i got autuo it3.1
u have msn? help me set it when you have the time lol im not a techy>.< hehe no idea how to use these programs o.O. im better at following directions...
dnmnbg at live.com sorry for the same questions lol
|
If you adding it to an existing script, paste it in AutoIT into your script, press F5 (Go), Then press F10 to toggle hack On/Off. Make sure hack is not on the first time you press F10 or else it'll toggle backwards :D
If not adding it to an existing script, you need a while loop to make it run forever until you exit. I'll repost with the loop code:
Code:
HotKeySet( "{ESC}", "_EXIT")
HotKeySet( "{F10}", "_ToggleHack")
Dim $hack_title = "Game Utility for 9Dragons"
Dim $hack_running = 0
Func _EXIT()
Exit 0
EndFunc
Func _ToggleHack()
ControlFocus($hack_title, "", "")
ControlClick($hack_title, "", "")
$hack_running = 1 - $hack_running
If $hack_running Then
_WriteStatus("Enabling hack...")
Else
_WriteStatus("Disabling hack...")
EndIf
EndFunc
Func _WriteStatus($msg)
ConsoleWrite($msg & @CRLF)
EndFunc
While 1
Sleep(1000)
WEnd