Page 1 of 1

Mouse Wheel in Blood?

Posted: Tue Jul 26, 2005 10:13 am
by Guest
Is it possible to configure my mouse wheel in Blood? I have this tendency of using my mouse wheel as my weapon switcher, and I love to be consistent.

Posted: Wed Feb 24, 2010 9:35 pm
by Lord Molder
Not as far as i know,but there might be a way to change the config file to bind mouse wheel,but im not sure the game could recognize it.Hell,even mouse look is a bit dodgey in Blood.But its old and set in its ways. :)

Re: Mouse Wheel in Blood?

Posted: Sat May 17, 2014 10:16 pm
by ssjlance
Download and install AutoHotKey, and make a new script. Just open it with Notepad and paste this in there:
*WheelUp::
SendEvent {Up Down}
Sleep 200
SendEvent {Up Up}
Return

*WheelDown::
SendEvent {Down Down}
Sleep 200
SendEvent {Down Up}
Return
Adapted it from a post found here: http://www.gog.com/forum/blood_series/u ... ns_in_ouwb
Basically, removed the top line which made it target just the DOSBox window. Make sure to close it after you're done playing, otherwise your mousewheel just registers as keyboard up/down. lol