|
|
#IfWinActive ahk_exe PathOfExile_x64.exe
~w::
Send {w Down}
Loop
{
GetKeyState, state, w , P
if state = U
{
Send {RButton Up}
Sleep 130
Send {d}
Break
}
}
~^$RButton::
Send {RButton Down}
Loop
{
GetKeyState, state, RButton , P
if state = U
{
Send {RButton Up}
Sleep 130
Send {d}
Break
}
}
~~~F5::
Return
我想w放地雷鼠标右键放烟雾地雷,可以这样写吗 |
|