Reverse direction of middle mouse scrolling

Does anyone know of a way (e.g. mod) to reverse the direction of scrolling when you hold the middle mouse button? It feels the wrong way round to me.

@Jip

"The needs of the many outweigh the needs of the few" - Spock

@reckless_charger Here's an autohotkey script that reverses the functions of the scroll wheel (not sure that's exactly what you want since you mentioned pressing the middle mouse button, but it's the closest I can come to helping)

#IfWinActive ahk_exe ForgedAlliance.exe
WheelDown::WheelUp
WheelUp::WheelDown

Save that block of text as "faf.ahk", download and install autohotkey, then double click the file you just saved. For convenience you can also add a shortcut to this file to your startup

@phong I think what he wants is when your press the scroll wheel invert mouse movement, so when you press the wheel to move the camera it moves the other way around.
That may also be doable with autohotkey

I'll look into it myself thanks