安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
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