Created
September 24, 2018 00:06
-
-
Save mrasmus/7332ece36af08ddb737f0a2e79bb4293 to your computer and use it in GitHub Desktop.
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
; Assigns Callouts for the Last Wish Vault plates to 5 and 6. | |
; A reset message for splitting up rounds is assigned to 7. | |
; Replace the word "Tree" with what plate you want. | |
5:: | |
SendInput, {Enter} | |
sleep, 50 | |
SendInput, Tree Penumbra | |
sleep, 100 | |
SendInput, {Enter} | |
return | |
6:: | |
SendInput, {Enter} | |
sleep, 50 | |
SendInput, Tree Antumbra | |
sleep, 100 | |
SendInput, {Enter} | |
return | |
7:: | |
SendInput, {Enter} | |
sleep, 50 | |
SendInput, --~~==New Round==~~-- | |
sleep, 100 | |
SendInput, {Enter} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment