Hi, I mad a little lua script for pubg lite no recoil , it works great with M416, UMP, AUG great ; you still have to pull mouse down but not as much. it's not perfect but it's okay as it's undetected.
You have to add the script at your mouse profile as a new lua script and enable it. I use it with my G102 it works great.
Usage :
Caps Lock key to enable and disable it.
Hold left key to shoot, and pull mouse down a little bit if needed.
You have to add the script at your mouse profile as a new lua script and enable it. I use it with my G102 it works great.
Usage :
Caps Lock key to enable and disable it.
Hold left key to shoot, and pull mouse down a little bit if needed.
Lua:
EnablePrimaryMouseButtonEvents(true);
function OnEvent(event, arg)
if IsKeyLockOn("capslock" )then
repeat
if IsMouseButtonPressed(1) then
repeat
MoveMouseRelative(0,1)
Sleep(3)
until not IsMouseButtonPressed(1)
end
until not IsMouseButtonPressed(3)
end
end