Vb hotkey
how can i set my hack, so that when i hold, say ALT, the hack will enable, and when i let go, if will disable. by the way, im trying to do this for glass wall.
Hm i done that
make 2 timers
on form load enable the first then
timer1.timer
if getkeypress (vbkeyalt) then
call blabla(warrock, addie, value)
timer2.interval = 1
timer1.interval = 0
timer2.timer
if getkeypress (vbkeyalt) then
call blabla(warrock, addie, value)
timer1.interval = 1
timer2.interval = 0
simple & easy
=S you don't need two timers,
if(getkeypress(vbkeyALT)) then
blublublu
else
blublublu
end if