|
|
;右键按住攒地雷 ,松开右键引爆
#SingleInstance Ignore
#MaxThreadsPerHotkey, 3
#ifWinActive,ahk_exe PathOfExile_x64.exe
SetKeyDelay, 50, 50
~RButton::
if WinActive("ahk_exe PathOfExile_x64.exe"){
Sleep, 50
Loop
{
Sleep, 50
if not GetKeyState("RButton", "P")
break
}
Send {d}
Sleep, 150
Send {d down}
Sleep, 50
}
Return |
|