From aa9924e555e735d50cdeaf7a99868084aea7377f Mon Sep 17 00:00:00 2001 From: GenericRicochetPlayer <113946528+GenericRicochetPlayer@users.noreply.github.com> Date: Sun, 4 Aug 2024 17:34:13 -0400 Subject: [PATCH] Add files via upload (#76) --- lua/cfc_entity_stubber/cw/cw_akm_official.lua | 1 + lua/cfc_entity_stubber/cw/cw_ar15.lua | 1 + lua/cfc_entity_stubber/cw/cw_l85a2.lua | 5 ++--- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/cfc_entity_stubber/cw/cw_akm_official.lua b/lua/cfc_entity_stubber/cw/cw_akm_official.lua index b44545a..42347b9 100644 --- a/lua/cfc_entity_stubber/cw/cw_akm_official.lua +++ b/lua/cfc_entity_stubber/cw/cw_akm_official.lua @@ -7,4 +7,5 @@ cfcEntityStubber.registerStub( function() weapon.HolsterTime = 0 weapon.HipSpread = 0.02 weapon.SpreadPerShot = 0.008 + weapon.Recoil = 1 end ) diff --git a/lua/cfc_entity_stubber/cw/cw_ar15.lua b/lua/cfc_entity_stubber/cw/cw_ar15.lua index 241f6ac..015c070 100644 --- a/lua/cfc_entity_stubber/cw/cw_ar15.lua +++ b/lua/cfc_entity_stubber/cw/cw_ar15.lua @@ -4,4 +4,5 @@ cfcEntityStubber.registerStub( function() local weapon = cfcEntityStubber.getWeapon( "cw_ar15" ) weapon.DeployTime = 0 weapon.HolsterTime = 0 + weapon.Recoil = 0.85 end ) diff --git a/lua/cfc_entity_stubber/cw/cw_l85a2.lua b/lua/cfc_entity_stubber/cw/cw_l85a2.lua index cd37982..3f86a3e 100644 --- a/lua/cfc_entity_stubber/cw/cw_l85a2.lua +++ b/lua/cfc_entity_stubber/cw/cw_l85a2.lua @@ -6,7 +6,6 @@ cfcEntityStubber.registerStub( function() weapon.VelocitySensitivity = 0 weapon.DeployTime = 0 weapon.HolsterTime = 0 - weapon.SpreadPerShot = 0.0015 - weapon.Recoil = 0.8 - weapon.damage = 33 + weapon.SpreadPerShot = 0.003 + weapon.Recoil = 0.7 end )