Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Pause
Loop{
Send {D down}
while GetKeyState("D"){
Send {Space down}
Sleep 300
Send {Space up}
}
Sleep 20000
}
F11::Pause
Esc::ExitApp
Use F11 to toggle it on/off, and Escape to exit the script at any time
Paste the following in a text file, save as AutoLog.ahk, and run with AutoHotkey v2
-----
Persistent ; Remain open even when nothing is happening
#SingleInstance force ; Only run one instance of this script at a time
Esc::ExitApp ; Exit the script at any time using the Escape key
toggle := 0 ; Set toggle variable at script startup
F11:: ; Use F11 key to toggle the following on and off
{
global toggle := !toggle ; Toggle toggle variable between 0 (off) and 1 (on)
if (toggle) { ; Toggled on, hold down D key and start spamming space to chop
Send "{D Down}"
SetTimer SpamSpace, 10
} else { ; Toggled off, release D key and stop spamming space
Send "{D Up}"
SetTimer SpamSpace, 0
}
return
}
SpamSpace(){ ; This function is all about repeatedly hitting that space bar key to chop
Send "{Space Down}"
Sleep 50
Send "{Space Up}"
return
}