- Download and install AutoHotkey.
- Create (with notepad, but saved as a .AHK file) or download this script:
state:=0
; Just change the following 'LControl' to whatever key your crouch key is.
; Name of the keys for AHK is here: http://www.autohotkey.com/docs/KeyList.htm
LControl::
state:= !state
if state
Send {LControl Down}
else
Send {LControl Up}
return
; Crouch Toggle adapted by Pluberus from here.
Zoom Toggle
- Download and install AutoHotkey.
- Create (with notepad, but saved as a .AHK file) or download this script:
state:=0
; Just change 'RButton' to whatever key your zoom key is.
; Name of the keys for AHK is here: http://www.autohotkey.com/docs/KeyList.htm
RButton::
state:= !state
if state
Send {RButton Down}
else
Send {RButton Up}
return
;Zoom Toggle adapted by Pluberus from here.
Enjoy!
No comments:
Post a Comment