|
My friends shared this in our Discord awhile back, they use GHub and seems to be working for them:
EnablePrimaryMouseButtonEvents(true);
function OnEvent(event, arg)
if IsKeyLockOn("numlock")then
if IsMouseButtonPressed(1) then
repeat
MoveMouseRelative(0,8)
Sleep(1,2)
until not IsMouseButtonPressed(1)
end
end
end
I'm not sure how exactly it works, but I think by changing the 'MoveMouseRelative' value will increase/decrease the recoil control intensity, this only controls vertical recoil I believe so may not be ideal for all guns.
Just a note, I tried this with my G305 model and it didn't function properly, but my friends said it works for them with their different models.
|