可以用按键精灵设置《西游释厄传2》MAME模拟器一键大招吗?
的有关信息介绍如下:脚本源文件代码:
Key = GetLastKey() //获取当前键盘的按键
//72-h键,使用H键往右边大招
If Key = 72 Then
TracePrint Key
KeyPress "d", 1 //往右
KeyPress "a", 1 //往左
KeyPress "s", 1 //往下
KeyPress "d", 1 //往右
KeyPress "a", 1 //往左
KeyPress "d", 1 //往右
KeyPress "j", 1 //击打
End If
//89-y键,使用Y键往左发大招
If Key = 89 Then
TracePrint Key
KeyPress "a", 1 //往左
KeyPress "d", 1 //往右
KeyPress "s", 1 //往下
KeyPress "a", 1 //往左
KeyPress "d", 1 //往右
KeyPress "a", 1 //往左
KeyPress "j", 1 //击打
End If
按键精灵编程图如下:
源文件
点击保存,调试,再按F10启动调试,在西游记游戏里按Y键或者H键,就可以自动放大招了。成功率是95%,这个是西游释厄传1。其他的联合按键是一样的原理。