;Press the "X" key to sent Ctrl+E ;You can change the "X" to any key you like ;You can change the 2nd sleep value if you find the attack "too slow" #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. slideAttackActive := false X:: if (not slideAttackActive) { slideAttackActive := true Send, {LCtrl down} Sleep, 50 Send, e Sleep, 500 Send, {LCtrl up} slideAttackActive := false } Return