; ; Front Matter ; ; Include relevant libraries #Include ../lib/Prelude.ahk #Include ../lib/HoldRepeat.ahk ; ; Hotkeys ; ; Hold/Autoclick mouse buttons ; Holds if single click, autoclicks if double click *!LButton UP::HoldOrRepeat("LButton") *!RButton UP::HoldOrRepeat("RButton") ; Hold/Repeat spacebar *!Space UP::HoldOrRepeat("Space") ; Autorun *!w UP::Hold("w",["s"]) *!s UP::Hold("s",["w"]) *!a UP::Hold("a",["d","w","s"]) *!d UP::Hold("d",["a","w","s"])