网络游戏

关注公众号 jb51net

关闭
游戏攻略 > 网络游戏 >

剑灵召唤一键卡刀代码使用图文教程

脚本之家

半自动读取f左右键模式,全自动读取1,2,f左右键模式。要鼠标有侧键,没侧键的我看心情帮你们改改……毕竟帖子老是沉,很不爽下面发代码,要写入ahk。

代码1:全自动识别1,2,F,左右键,鼠标侧上键启动

#IfWinActive ahk_class LaunchUnrealUWindowsClient

XButton1::

loop{

send {1}

sleep 10

send {f}

sleep 10

send {2}

sleep 10

send {LButton}

sleep 10

send {RButton}

sleep 10

send {f}

sleep 10

send {t}

}Until Not getkeystate("XButton1","P")

return

F11::suspend

代码2:半自动识别F,左右键,鼠标侧下键启动

#IfWinActive ahk_class LaunchUnrealUWindowsClient

XButton2::

loop{

send {f}

sleep 10

send {LButton}

sleep 10

send {RButton}

sleep 10

send {f}

sleep 0

send {t}

}Until Not getkeystate("XButton2","P")

return

F11::suspend

这是改键

www.jb51.net

步骤:先下载安装ahk,网上直接搜,否则电脑无法识别文件。

然后介绍一种比较无脑的代码编辑方法。