- Status
- Offline
- Joined
- Feb 17, 2021
- Messages
- 392
- Reaction score
- 72
Hello everyone!
I think not everyone have money to spend on expensive cheats or macro to play in COD:Warzone.
So I share with you a simple macro for Logitech mouses and yes, it is completely FREE!
Suitable for every gun in game
Here is the code. To use it folllow this steps
1 .Copy
2. Paste in empty notepad and put .lua
3. Go to GHub and choose configuration
4. Near active cfg click on a gear
5. Add new
6. Success!

I think not everyone have money to spend on expensive cheats or macro to play in COD:Warzone.
So I share with you a simple macro for Logitech mouses and yes, it is completely FREE!
Suitable for every gun in game
Here is the code. To use it folllow this steps
1 .Copy
2. Paste in empty notepad and put .lua
3. Go to GHub and choose configuration
4. Near active cfg click on a gear
5. Add new
6. Success!
DPI: 600
Sensitivity: 12
Activate: Button5
Sensitivity: 12
Activate: Button5
Code:
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
recoilx4 = not recoilx4
spot = not spot
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoilx4) then
if recoilx4 then
repeat
MoveMouseRelative(0, 2)
Sleep(5)
MoveMouseRelative(-1,6)
Sleep(15)
MoveMouseRelative(1,-6)
Sleep(15)
MoveMouseRelative(0, 2)
Sleep(5)
until not IsMouseButtonPressed(1)
end
end
end
Last edited: