Last active
November 22, 2022 18:09
-
-
Save rakkarage/7f60e177ecf3796f35fd2f090b82ab9d to your computer and use it in GitHub Desktop.
Disgaea 6 Juice Bar AutoHotKey script
This file contains hidden or 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
#ifWinActive Disgaea 6 Complete | |
^x:: | |
Process(100) | |
return | |
^c:: | |
Process(50) | |
return | |
^v:: | |
Process(10) | |
return | |
Process(count) | |
{ | |
Loop, %count% { | |
Send, {d down} | |
Sleep 20 | |
Send, {d up} | |
Sleep 20 | |
Send, {Enter down} | |
Sleep 20 | |
Send, {Enter up} | |
Sleep 20 | |
Send, {Enter down} | |
Sleep 20 | |
Send, {Enter up} | |
Sleep 20 | |
Send, {Enter down} | |
Sleep 20 | |
Send, {Enter up} | |
Sleep 200 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment