
Originally Posted by
Epic207
Is it also a problem to use Logitech scripts?
Hello, No you will never be banned if you use a macro or script on Logitech.
PUBG are not able to ban you because Logitech is an official program provided with Logitech mice.
Here is a very good script for PUBG by @
Destiny :
function OnEvent(event, arg)
OutputLogMessage("event = %s, arg = %d\n", event, arg)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
elseif event == "PROFILE_DEACTIVATED" then
ReleaseMouseButton(2) -- to prevent it from being stuck on
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 5) then
recoil = not recoil
spot = not spot
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoil) then
if recoil then
repeat
--Sleep(35)
Sleep(7)
MoveMouseRelative(0, 2)
until not IsMouseButtonPressed(1)
end
end
end