nvstoned
12-08-2007, 01:44 PM
you will need autoit if you want hotkeys for ur hacks
i will give a small example to use with vindcare's hack
; start inf loop
while 1
if _IsPressed(20) Then ControlClick("Vindcare's hack","","Button1") ;IF YOU PRESS SPACEBAR IT WILL CLICK THE STAMINA ON
if _IsPressed(56) Then ControlClick("Vindcare's hack","","Button2") ;IF YOU PRESS 'V' IT WILL CLICK THE STAMINA OFF
sleep(50)
WEnd
;End inf loop
Func _IsPressed()
Local
= '0x' &
= DllCall("user32", "int", "GetAsyncKeyState", "int", )
If Not @error And BitAND(,0x8000) = 0x8000 Then Return 1
Return 0
EndFunc
hack doesnt need to be open in front , autoit will click it even if its hidden...
open notepad save this code as AU3, download & install autoit http://www.autoitscript.com
Run the Au3, run vindcares hack, run warrock
Now press Space and it will use unl stamina, press 'V' and it will turn it off
you can add all buttons you like
can use other hacks, change the Title in the script, also probably the button code will change....
you can use Autoit Info to look for Button ID, name, ....
If you really really want some hotkeys, and cant make it work, give me a pm
im not good in C, and the hacks ive used doesnt seem to had any hotkeys
so thats why i posted
Greetz
Nvstoned
i will give a small example to use with vindcare's hack
; start inf loop
while 1
if _IsPressed(20) Then ControlClick("Vindcare's hack","","Button1") ;IF YOU PRESS SPACEBAR IT WILL CLICK THE STAMINA ON
if _IsPressed(56) Then ControlClick("Vindcare's hack","","Button2") ;IF YOU PRESS 'V' IT WILL CLICK THE STAMINA OFF
sleep(50)
WEnd
;End inf loop
Func _IsPressed()
Local
= '0x' &
= DllCall("user32", "int", "GetAsyncKeyState", "int", )
If Not @error And BitAND(,0x8000) = 0x8000 Then Return 1
Return 0
EndFunc
hack doesnt need to be open in front , autoit will click it even if its hidden...
open notepad save this code as AU3, download & install autoit http://www.autoitscript.com
Run the Au3, run vindcares hack, run warrock
Now press Space and it will use unl stamina, press 'V' and it will turn it off
you can add all buttons you like
can use other hacks, change the Title in the script, also probably the button code will change....
you can use Autoit Info to look for Button ID, name, ....
If you really really want some hotkeys, and cant make it work, give me a pm
im not good in C, and the hacks ive used doesnt seem to had any hotkeys
so thats why i posted
Greetz
Nvstoned