※ 引述《bodhi (????)》之銘言:
: 無論上下/左右 最後輸入的為準 所以壓住上 按下 就是下 壓住左按右 就是右
: 而且一旦放開 就是以尚未放開的為準 所以壓住上下 放開上之後 就是下work
這邊只有上下的,左右同理。
~up::
if (GetKeyState("down")) {
Send {down up}
}
return
~up up::
if (GetKeyState("down", "P")) {
Send {down down}
}
return
~down::
if (GetKeyState("up")) {
Send {up up}
}
return
~down up::
if (GetKeyState("up", "P")) {
Send {up down}
}
return
不過格鬥遊戲的話還是乖乖練比較好吧 xD