; Send left mouse button clicks by holding down a key, for The Long Dark ; Hold F2 down to send a left mouse click every 50 millisecond. Release F2 to stop sending clicks. #SingleInstance Force #IfWinActive ahk_exe tld.exe ; works only when TLD is the active window F2:: ; hold down 'F2' for wolf struggle While GetKeyState("F2", "P") { Click Sleep 50 } Return