[Script] Disable scroll wheel in minecraft (windows java version only)

Post gaming related scripts
heathen
Posts: 5
Joined: 08 Nov 2020, 22:37

[Script] Disable scroll wheel in minecraft (windows java version only)

Post by heathen » 08 Nov 2020, 22:50

Code: Select all

MinecraftWindowActive() ;More than one window may contain the word minecraft. look for process name too
{
	WinGet, pn, ProcessName, A
	WinGetTitle, wn, A
	if(RegExMatch(pn, "^javaw.exe$") && regExMatch(wn, "^Minecraft.*$")) 
	{
		return wn
	}
	else
	{
		return false
	}	
}

WheelUp::
if(MinecraftWindowActive())
{
	Return
}
else
{
	Send {WheelUp}
	Return
}

WheelDown::
if(MinecraftWindowActive())
{
	Return
}
else
{
	Send {WheelDown}
	Return
}

CR3ALITY
Posts: 21
Joined: 08 Nov 2020, 18:37

Re: [Script] Disable scroll wheel in minecraft (windows java version only)

Post by CR3ALITY » 16 Jan 2021, 01:12

You can Disable it without even making a script, just go to the settings file inside your minecraft.jar on the /versions folder

Post Reply

Return to “Gaming Scripts (v1)”