(Add this script below to the txt file in Autohotkey its free. Direct download.)
(Sorry for hijack
)
The first script is just a basic COD iron if you dont mind losing map right click, cancel menu and iron sights toggle.
;1---------------------------------------------------------------------------------------------
; Arma 2: COD Iron sights 1
*RButton::
Send, {RButton 1}
KeyWait RButton
return
*RButton Up::
Send, {RButton 1}
return
;----------------------------------------------------------------------------------------------
The second one lets you toggle with a fast click, hold release (COD style) with a hold longer than about a 100miliseconds.
It also lets you use the map right click as normal and cancel menu quick menu options with the small hassle of going into iron sights mode you have to exit after canceling the quick action... There might be better ways, but I recommend the first one for clean PVP deathmatch etc and the second one for other stuff where you need the other functions.
;2---------------------------------------------------------
; Arma 2: COD Iron sights 2
*RButton::
Send, {RButton 1}
Send, {RButton down}
KeyWait RButton
Send, {RButton up}
Send, {RButton 1}
return
;---------------------------------------------------------
You can also try both scripts with this toggle zoom key.
It makes indoor battles easier because the turning speed is slightly increased without any settings changing.
Use one of the top scrips, 1 or 2, and this one, 3, below. Press F12 to toggle zoom out. You can change F12 to any key you want, but F1-10 and a few others, but the basic keys work if you have any of them empty.
;3---------------------------------------------------------
; Arma 2: Zoom out and hold toggle key.
state:=0
$F12::
state:= !state
if state
Send {NumpadSub down}
else
Send {NumpadSub Up}
return
;---------------------------------------------------------