#Requires AutoHotkey v2.0 #SingleInstance Force #UseHook True #InstallKeybdHook #HotIf WinActive("ahk_exe hitman3.exe") global instinctToggle := false ; === Toggle Instinct with CapsLock (change to F4, XButton1, etc. if you prefer) === CapsLock:: { global instinctToggle instinctToggle := !instinctToggle if (instinctToggle) { Send "{Ctrl down}" ; Hold for Instinct ON ToolTip "Instinct: ON (Ctrl held)", 30, 30 } else { Send "{Ctrl up}" ; Release = Instinct OFF ToolTip "Instinct: OFF", 30, 30 } SetTimer () => ToolTip(), -1200 } ; === Panic / Instant Release (F3) === F3:: { global instinctToggle if (instinctToggle) { Send "{Ctrl up}" instinctToggle := false ToolTip "PANIC - Instinct OFF", 30, 30 SetTimer () => ToolTip(), -800 } } ; Optional: Allow real Ctrl when holding Shift (safety) +Ctrl::Send "{Ctrl}" #HotIf