apex罗技鼠标宏怎么设置

apex罗技鼠标宏怎么设置,第1张

apex罗技鼠标宏设置步骤如下:

1、打开控制面板。

2、点击大图标。

3、点击鼠标。

4、点击指针选做做项。

5、将提高指针精确度前面的勾去掉纯饥衡。

6、点击罗技鼠标驱动。

7、将DPI灵敏度设置为1200并肢蠢导入文件夹。

8、打开宏所在文件夹并导入即可。

--APEX抖q宏所有武器通用---分割线---

EnablePrimaryMouseButtonEvents(true)

turn=0

down=0

function OnEvent(event,arg)

local offset

local recovery_offset

local downcount

local qwq = IsMouseButtonPressed(3)

OutputLogMessage("Event:"..event.." Arg: "..arg.."\n")

if(event== "MOUSE_BUTTON_PRESSED" and arg==1 andturn==1 and qwq==true) then

downcount=0

repeat

-- OutputLogMessage("%d\n",downcount)

downcount=downcount+1

if(downcount<=150 and down==1) then

MoveMouseRelative(0,1)

end

--[[

offset对应抖动的幅度,可以根据自己的灵敏度调整,改租太小的话没有减少后坐力的效果

--]]

offset=math.random(8,8)

recovery_offset = -offset

Sleep(2)

MoveMouseRelative(offset,offset)

Sleep(2)

1/212

MoveMouseRelative(recovery_offset,recovery_offset)

until not IsMouseButtonPressed(1)

end

--[[

arg的数字表示鼠标的按键4表示侧键的后退键孙御,5表示前进键,则歼岩可以设置自己喜欢的按键避免误触

turn变量对应鼠标的抖动开关

down变量对应鼠标的下压开关

--]]

if(event== "MOUSE_BUTTON_PRESSED" and arg==4) then

if(turn==0)then

turn=1

else

turn=0

end

end

if(event== "MOUSE_BUTTON_PRESSED" and arg==99) then

if(down==0)then

down=1

else

down=0

end

end

end

2/212

------分割线结束,不要复制我-------


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12469261.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-25
下一篇 2023-05-25

发表评论

登录后才能评论

评论列表(0条)

保存