Mass help with Hotkeys Warrock
basically i have no idea how to make hotkeys and i really need them for my hack the uses checkboxes
so if i have a checkbox hack that has a timer, for instance no bounds
the timer for no bounds will be False Interval 1
Call ********("Warrock", &HDAE378, 0)
Call ********("Warrock", &HDAE380, 0)
so where do i put the hotkey code and everything etc
and
if i have a checkbox hack that DOESN'T have a timer, for instance Glass Walls
my code is
If Check14.Value = 1 Then
Call ***********("warrock", &HB2A848, 0.6)
Else
Call **********("warrock", &HB2A848, 1166127104)
End If
where do i put the hotkey code and do i need a timer and all that
thanks a lot
credits will be given of course
ok this is just an example where the hotkeys go:
Ex. SuperJump
If GetAsyncKeyState(vbKeyControl) And GetAsyncKeyState(vbKeySpace) Then
Dim jump1 As Long
Dim jump2 As Long
Dim jump3 As Single
Call ReadALong("warrock", &H1363380, jump1)
jump2 = jump1 + &H178
jump3 = txtJump.Text
Call WriteAFloat("warrock", jump2, jump3)
End If
-------------
If GetAsyncKeyState(vbKeyControl)=Gives HotKey for Ctrl
And GetAsyncKeyState(vbKeySpace)=Gives hotkey for Space Bar
So hotkeys together would be Ctrl+Space to superjump