|
|
用了AHK引爆地雷,不知道为什么都要第二扔出去地雷才引爆
#SingleInstance Ignore
#MaxThreadsPerHotkey, 2
SetKeyDelay, 50, 50
;参数设置
global ping := 200 ;初始间隔ms
~e::
settimer, MyTimedLabel,% -ping
return
MyTimedLabel:
if WinActive("ahk_exe PathOfExile_x64.exe") and getkeystate(e) = U
Send {d}
return |
|