Skip to content

Instantly share code, notes, and snippets.

@rtldg
Created June 27, 2022 04:26
Show Gist options
  • Save rtldg/7026cbc870202be458518f1e08581e2c to your computer and use it in GitHub Desktop.
Save rtldg/7026cbc870202be458518f1e08581e2c to your computer and use it in GitHub Desktop.
#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.
SetKeyDelay, 10
winTitle := "ahk_class UnityWndClass ahk_exe ShiningJumpJump.exe"
Loop
{
Sleep, 10
ControlSend,, {Left}, %winTitle%
ControlSend,, {Right}, %winTitle%
;Send {Left}
;Send {Right}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment