|
|
自用的大fa师尿布头电刀, 大小写开关,大写开, 最近4.2秒内不会重复按下e键,防止爆蓝
日常速刷用的是按下鼠标左键,其他全交给ahk
#if WinActive("ahk_exe PathOfExile_x64.exe")
global time_1:=0
$e::
{
If GetKeyState("CapsLock","T")
{
a:=1
}
else
{
a:=0
sendinput {e}
}
if(time_1==0 and a == 1 )
{
sendinput {e}
;{e}{1}{R}
time_1:=1
SetTimer, cooldown, -4200
;SetTimer, e_1, -500 ;药剂3 鼠标中键暗影迷踪
;SetTimer, e_2, -1000 ;药剂4
}
return
}
;e_2:
;sendinput {4} ;药剂4
;return
;e_1:
;sendinput {3}{MButton} ;药剂3 鼠标中键暗影迷踪
;return
cooldown:
time_1=0
return
#IfWinActive
^space::Reload |
|