xtance Posted November 7, 2020 Posted November 7, 2020 (edited) RAGE:MP version = 1.1 So basically I want to disable all mousewheel events by doing this in render event: mp.game.controls.disableAllControlActions(2); Is basically removing any ability to walk and jump and etc; Why? I also tried inputgroup = 24 and got same results UPD: I also tried disabling controls related to mousewheel one by one and got this: //Disable next radio mp.game.controls.disableControlAction(2, 81, true); //Disable weapon scroll in veh mp.game.controls.disableControlAction(2, 99, true); mp.game.controls.disableControlAction(2, 100, true); //Disable weapon scroll on foot <-- this is also not working mp.game.controls.disableControlAction(2, 261, true); mp.game.controls.disableControlAction(2, 262, true); So it's ok in car but on foot I still can use mousewheel Edited November 7, 2020 by xtance
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now