This blog is a collection of thoughts on gaming tips, tricks, and news.

Bookmark this site and check back often for updates!

Monday, April 20, 2009

Crouch and Zoom Toggle

Crouch Toggle
  1. Download and install AutoHotkey.
  2. 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
  1. Download and install AutoHotkey.
  2. 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