map extra weapons groups to their mouse. If you are like me, you hate using number keys to fire as they take your fingers off the turn keys. A lot of people have only 2 button mice, so I came up with a way to turn a 2 button mouse with scroll wheel into a 4 button mouse, triggering off either the up or down scroll action.
You will need http://www.autohotkey.com/ to run this, and the program will need to be run as administrator, but it works really nicely and should stop you shelling out for a new mouse =-)
#SingleInstance Force
#InstallMouseHook
#InstallKeyBDHook
#IfWinActive ahk_class CryENGINE
WheelUp::
send {3 down}
sleep 85
send {3 up}
return
WheelDown::
send {4 down}
sleep 85
send {4 up}
return
Edited by MrDrunkenMaster, 15 July 2013 - 12:59 PM.