It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Please tell me there's a way to rebind mouse wheel. MWheelDown for previous weapon and MWheelUp for next is completely backwards, doesn't make any sense at all and is just plain stupid. Yes, I tried rebinding it in options, I'm not stupid (unlike whoever designed those controls). Is there any console command or config edit? Please?
No posts in this topic were marked as the solution yet. If you can help, add your reply
Short answer, no.

You may be able to use something like the program AutoHotkey to rebind keys for specific programs or games. In other words, you run AutoHotkey, have it run this script and then your game (I found it on another website from someone named GodlyCheese):


WheelUp::
Send {WheelDown}
return

WheelDown::
Send {WheelUp}
return


I've never used AutoHotkey, so that may not work. That's just what I've read online.