JIT
Custom recoil control with stronger pull
EnableRCS = true RecoilControlMode = "Custom" RcCustomStrength = 2 RequireToggle = false ToggleKey = "CapsLock" DelayRate = 8 LeftPullStrength = 1 if RecoilControlMode == "Low" then RecoilControlStrength = 2 elseif RecoilControlMode == "Medium" then RecoilControlStrength = 4 elseif RecoilControlMode == "High" then RecoilControlStrength = 8 elseif RecoilControlMode == "Ultra" then RecoilControlStrength = 12 elseif RecoilControlMode == "Insanity" then RecoilControlStrength = 31 elseif RecoilControlMode == "Custom" then RecoilControlStrength = RcCustomStrength end EnablePrimaryMouseButtonEvents(true) function OnEvent(event, arg) if EnableRCS then local isToggled = not RequireToggle or IsKeyLockOn(ToggleKey) if isToggled then if IsMouseButtonPressed(3) then repeat if IsMouseButtonPressed(1) then repeat MoveMouseRelative(-LeftPullStrength, RecoilControlStrength) Sleep(DelayRate) until not IsMouseButtonPressed(1) end until not IsMouseButtonPressed(3) end end end end MAKE THIS PULL DOWN MORE AND LEFT MORE FASTER
Write file
Increased pull down/left strength and speed
v1