Anyone have a good single fire macro settings? I have a logitech g502 and set a simple macro script in the logitech profiler but got banned after 1 day of use. ANyone know of a good time delay or settings for it?
EnablePrimaryMouseButtonEvents(true);
function OnEvent(event, arg)
if IsKeyLockOn("numlock" )then
if IsMouseButtonPressed(1) then
Sleep(33)
repeat
MoveMouseRelative(0,4)
Sleep(4)
until not IsMouseButtonPressed(1)
end
end
end
Quote:
i use this tiny script for PUBG, works perfectly with AK.
Code:EnablePrimaryMouseButtonEvents(true); function OnEvent(event, arg) if IsKeyLockOn("numlock" )then if IsMouseButtonPressed(1) then Sleep(33) repeat MoveMouseRelative(0,4) Sleep(4) until not IsMouseButtonPressed(1) end end end