Basic AutoHotkey script to (semi)automate The Escapists exercise

q & e::
  While GetKeyState("q","p")
  {
    Send, {q down}
    Sleep, 10
    Send, {q up}
    Send, {e down}
    Sleep, 10
    Send, {e up}
  }
Return

(Run the code and hold q and e.)

Makes the button smashing minigame (AKA “working out”) a bit more bearable.

3 Likes