半肾
精华
|
战斗力 鹅
|
回帖 0
注册时间 2002-12-29
|
首先,安装AutoHotKey(不到4M的小工具)然后新建一个TXT,复制下面内容粘贴保存,然后把后缀改为ahk,游玩时直接双击执行这个ahk文件就可以了。我设置的激发热键是鼠标中键(发招就是防御键+中键),防御键设置为右键。
当然热键可以自己改,把所有mButton替换成你想用的键就可以了。这个脚本需要持续按住热键才能出完整套无间,中途松键就中断了。注意热键不要设置为左键,脚本执行期间切出游戏的话左键就不能正常用了。
这里是原帖,需要手柄脚本的自寻。https://tieba.baidu.com/p/7230399963
以下是复制内容:
mButton::
;(mButton=热鍵)
Send {Tab Down}
Sleep 40
Send {LButton Down}
Sleep 40
Send {LButton Up}
Sleep 40
Send {Tab Up}
Sleep 1253
Send {LButton Down}
Sleep 40
Send {LButton Up}
Sleep 890
if not getkeystate("mButton","P")
return
Send {LButton Down}
Sleep 40
Send {LButton Up}
Sleep 790
if not getkeystate("mButton","P")
return
Send {LButton Down}
Sleep 40
Send {LButton Up}
Sleep 890
if not getkeystate("mButton","P")
return
Send {LButton Down}
Sleep 40
Send {LButton Up}
Return
;(RButton=防)
;(LButton=輕)
|
|