Skip to content

Instantly share code, notes, and snippets.

@rakkarage
Last active November 22, 2022 18:09
Show Gist options
  • Save rakkarage/7f60e177ecf3796f35fd2f090b82ab9d to your computer and use it in GitHub Desktop.
Save rakkarage/7f60e177ecf3796f35fd2f090b82ab9d to your computer and use it in GitHub Desktop.
Disgaea 6 Juice Bar AutoHotKey script
#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