Last active
December 14, 2021 06:10
-
-
Save arye321/7069face4f400f590ffc50b02a6e0bcd to your computer and use it in GitHub Desktop.
Autohotkey Rust game autowalk
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
*XButton1:: | |
GetKeyState, state, Shift | |
if (state = "D"){ | |
send {w up} | |
send {shift up} | |
} | |
else{ | |
send {w down} | |
send {shift down} | |
} |
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
*XButton1:: ; (back mouse button) go to https://www.autohotkey.com/docs/KeyList.htm to change | |
GetKeyState, state, Shift | |
if (state = "D"){ | |
send {w up} | |
send {shift up} | |
} | |
else{ | |
send {w down} | |
send {shift down} | |
} |
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
$^+c:: | |
Send, ^{Insert} | |
return |
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
*XButton1:: | |
GetKeyState, state, LButton | |
if (state = "U"){ | |
Click, Down | |
} | |
else{ | |
Click, Up | |
} |
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
#MaxThreadsPerHotkey 2 | |
F11:: | |
toggle:=!toggle | |
While toggle{ | |
Send {Enter} | |
Sleep 3000 | |
} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment