[MY ENGLISH IS REALLY BAD]
I simply share this code with anyone who uses a Logitech mouse that supports LGS
You can add this code to your LGS profile by adding a new profile => right click on the profile and then select "Scripting" => delete all the lines in the default profile and paste the code below => Save and right-click on the profile you just created, select "Set As Persistent"
While in the game press the BACK button on the mouse, go to the practice room to pick up an AR gun and adjust the sensitivity in the control settings
BTW YOU CAN USE M16A4 IN AUTO MODE
I simply share this code with anyone who uses a Logitech mouse that supports LGS
You can add this code to your LGS profile by adding a new profile => right click on the profile and then select "Scripting" => delete all the lines in the default profile and paste the code below => Save and right-click on the profile you just created, select "Set As Persistent"
While in the game press the BACK button on the mouse, go to the practice room to pick up an AR gun and adjust the sensitivity in the control settings
Kod:
EnablePrimaryMouseButtonEvents (true)
function OnEvent(event, arg, family)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
click = 0
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 4) then
recoil = not recoil
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoil) then
click = 1
Click()
end
if (event == "M_RELEASED" and arg == 3) then
Click()
end
if (event == "MOUSE_BUTTON_RELEASED" and arg == 1) then
Stopclick()
end
end
function Click()
PressAndReleaseMouseButton(1)
Sleep (7)
MoveMouseRelative(0, 3)
if click == 0 then
Stopclick()
elseif click == 1 then SetMKeyState(3)
else Stopclick()
end
end
function Stopclick()
click = 0
end
Post automatically merged:
BTW YOU CAN USE M16A4 IN AUTO MODE