Untitled
unknown
plain_text
2 years ago
480 B
4
Indexable
#MaxHotkeysPerInterval 1000 #Persistent global g_is_suspended := 0 global g_space_spam_active := 0 #IfWinActive ahk_exe FSD-Win64-Shipping.exe F1:: g_space_spam_active := !g_space_spam_active return *i:: if ( g_space_spam_active = 1 ) { While GetKeyState("i","p") { SendEvent, {i down} ;Sleep 1 SendEvent, {i up} ;Sleep 1 } } else { SendEvent, {i down} While GetKeyState("i","p") { Sleep 1 } SendEvent, {i up} } return #IfWinActive
Editor is loading...