这是一个APEX的LUA小脚本,它通过在两个不同的点之间瞬间来回鼠标的位置来减少后座力使你更容易击中敌人,
如何使用
这是一个LUA脚本,所以你可以在任何支持脚本的滑鼠和键盘中运行它,例如罗技

使用scrolllock开关脚本
当你同时按下左右键,将会运作脚本
你可以增加或减少MoveMouseRelative后面的数字来自定义强度
版本1.1.2
function OnEvent(event, arg)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
end
if IsKeyLockOn("scrolllock")then
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1)then
if IsMouseButtonPressed(3)then
repeat
MoveMouseRelative(-10, 12)
Sleep(10)
MoveMouseRelative(10, -10)
Sleep(10)
until not IsMouseButtonPressed(1)
end
end
end
end
版本1.1
function OnEvent(event, arg)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
end
if IsKeyLockOn("scrolllock")then
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1)then
if IsMouseButtonPressed(3)then
repeat
MoveMouseRelative(-10, 10)
Sleep(10)
MoveMouseRelative(10, -10)
Sleep(10)
until not IsMouseButtonPressed(1)
end
end
end
end


感谢
没反应..
我回去试试
哪里下载
LUA脚本代码已在文章中,没有软件
因不同程序写入LUA脚本有所不同
写入方式请依个别使用的程序百度搜索