金币428
积分864
注册时间2019-6-8
最后登录2024-10-31
|
评价一下,
第一apex因为最近抖枪的出现,让宏变得可有可无,而抖枪宏代码不超过20行,有点基础就能写,在这分享下我的:
function OnEvent(event, arg)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1)then
if IsMouseButtonPressed(3)then
MoveMouseRelative(0,1)
Sleep(10)
MoveMouseRelative(0,1)
Sleep(10)
MoveMouseRelative(0,1)
Sleep(10)
repeat
MoveMouseRelative(-2,2)
Sleep(15)
MoveMouseRelative(2,-2)
Sleep(15)
until not IsMouseButtonPressed(1)
end
end
end
使用ghub,下移1像素三次每次间隔10ms,然后开始抖枪。摁住开镜。而且不调枪,不用对应摁键开启
第二,你这上传个带loadstring加密的,无法根据自己的灵敏度细调数据。
第三,loadstring下有时间加密,通常为1到2个月宏就会因为到期而失效。
第四,这种级别不免费发出来,说不定还有大佬顺便就帮你解开loadstring加密了,自己想改啥改啥不好吗。
|
|