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
A) Use auto hotkey 2
B) When running the script make sure you run it as an admin so that it can hook into the game in fullscreen
C) Rebind F11 to F6 in config because the game uses F11 to send a bug report.
#Requires AutoHotkey v2.0
f11::
{
Static running := False
running := !running ; Toggle running state
If running
{
SoundBeep(1500) ; Indicate the script is running
SetTimer(PressSpace, 750) ; Set the timer to repeat every 750ms
}
Else
{
SoundBeep(1000) ; Indicate the script is stopped
SetTimer(PressSpace, 0) ; Stop the timer
}
}
PressSpace()
{
Send("{Space down}") ; Press and hold the Space key
Sleep(750) ; Wait for 750 milliseconds
Send("{Space up}") ; Release the Space key
}
^x::ExitApp ; This makes CTRL+X exit the program.
import time
while True:
keyboard.send_keys(" ")
time.sleep(0.75)
You can bind it to f6 in the GUI.
To exit you need to quit autokey. You can use the tray icon for that.
KeyWait, u, D
Loop {
Send {Space Down}
Sleep 750
Send {Space Up}
}
Esc::ExitApp
For those who didn't use AutoHotKey before : open a blank text, paste the script, save in the .ahk format
https://pastebin.com/31GUuM3V