Changing Weapons with mousewheel

ZEROibisZEROibis Join Date: 2009-10-30 Member: 69176Members, Constellation
The only option I see is: <NextWeapon>MouseZ</NextWeapon>

How can we make it so the mousewheel goes in the exact opposite direction than the game currently registers or any way to have mouseUP and DOWN for next/previous.

Comments

  • ultranewbultranewb Pro Bug Hunter Join Date: 2004-07-21 Member: 30026Members
    SetTitleMatchMode 3
    #IfWinActive Natural Selection 2
    {
    	WheelDown::
    	SetKeyDelay, 30
    	Send 1
    	return
    
    	WheelUp::
    	SetKeyDelay, 30
    	Send 2
    	return
    }
    

    I use the above AutohotKeys script for switching weapons using the mousewheel. There's nothing in the game, currently, that lets you bind to the mousewheel.
  • ZEROibisZEROibis Join Date: 2009-10-30 Member: 69176Members, Constellation
    edited March 2013
    OK I will try that program, too bad we got to go as far as installing other programs on our computer just to be able to change weapons correctly lol.

    Oh now I see that just makes things worse b/c it just lets me use 1 and 2. One real issue is that this game is not mouse wheel friendly at all. Just take the gorge for example...
  • dragonmithdragonmith Join Date: 2013-02-04 Member: 182817Members, Reinforced - Diamond
    I just want to invert it, because games like Left 4 Dead use the other way, which makes more sense to me :)
  • Ghosthree3Ghosthree3 Join Date: 2010-02-13 Member: 70557Members, Reinforced - Supporter
    Yeah scroll DOWN should scroll down through the weapons, not the other way around, always bugged me as well.
Sign In or Register to comment.