Created
February 16, 2017 10:11
-
-
Save BirkhoffLee/ace777be9516a9cb4a89a83564defc25 to your computer and use it in GitHub Desktop.
An AutoHotKey script for Minecraft AFK mining, which keep pressing the left mouse button and locks the movement of mouse while mining. Use "z" to toggle.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
z:: | |
if GetKeyState("LButton") { | |
Send % "{Click Up}" | |
BlockInput, MouseMoveOff | |
} else { | |
Send % "{Click Down}" | |
BlockInput, MouseMove | |
} | |
return |
@BirkhoffLee how do i uninstall it
@BirkhoffLee how do i uninstall it
press show hidden icons and close from their
@BirkhoffLee how do you turn off "MouseMoveOff" ?
@BirkhoffLee how do i uninstall it
press "z" again
i recommend to make it like this
#IfWinActive Minecraft
!z:: ; alt + Z to activate and de-activate this script
if GetKeyState("LButton") {
Send % "{Click Up}"
BlockInput, MouseMoveOff
} else {
Send % "{Click Down}"
BlockInput, MouseMove
}
return
Can someone please update this. Also is there a way where you dont need the original minecraft for example lunar client? I fixed it myself now but I need help on adding it so it automates moving foward.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works much better when u add the '#IfWinActive Minecraft line' so you can use 'Z' on the desktop without activating the script all the time.