diff --git a/lua/cfc_entity_stubber/cw/cw_g18.lua b/lua/cfc_entity_stubber/cw/cw_g18.lua index a88640b..51289d3 100644 --- a/lua/cfc_entity_stubber/cw/cw_g18.lua +++ b/lua/cfc_entity_stubber/cw/cw_g18.lua @@ -6,4 +6,5 @@ cfcEntityStubber.registerStub( function() weapon.HolsterTime = 0 weapon.ReloadSpeed = 1.4 weapon.VelocitySensitivity = 0 + weapon.SprintingEnabled = false end ) diff --git a/lua/cfc_entity_stubber/cw/cw_g36c.lua b/lua/cfc_entity_stubber/cw/cw_g36c.lua index 7c1f1e6..e26e1e8 100644 --- a/lua/cfc_entity_stubber/cw/cw_g36c.lua +++ b/lua/cfc_entity_stubber/cw/cw_g36c.lua @@ -7,4 +7,6 @@ cfcEntityStubber.registerStub( function() weapon.VelocitySensitivity = 0 weapon.ReloadSpeed = 1.4 weapon.AimSpread = 0.001 + weapon.Damage = 33 + weapon.HipSpread = 0.03 end ) diff --git a/lua/cfc_entity_stubber/cw/cw_g4p_g36c.lua b/lua/cfc_entity_stubber/cw/cw_g4p_g36c.lua new file mode 100644 index 0000000..7a1142d --- /dev/null +++ b/lua/cfc_entity_stubber/cw/cw_g4p_g36c.lua @@ -0,0 +1,9 @@ +AddCSLuaFile() + +cfcEntityStubber.registerStub( function() + local weapon = cfcEntityStubber.getWeapon( "cw_g4p_g36c" ) + weapon.DeployTime = 0 + weapon.HolsterTime = 0 + weapon.VelocitySensitivity = 0 + weapon.Damage = 30 +end ) diff --git a/lua/cfc_entity_stubber/cw/cw_g4p_ump45.lua b/lua/cfc_entity_stubber/cw/cw_g4p_ump45.lua index 7f20331..d55b723 100644 --- a/lua/cfc_entity_stubber/cw/cw_g4p_ump45.lua +++ b/lua/cfc_entity_stubber/cw/cw_g4p_ump45.lua @@ -7,6 +7,6 @@ cfcEntityStubber.registerStub( function() weapon.VelocitySensitivity = 0 weapon.HipSpread = 0.03 weapon.SpreadPerShot = 0.006 - weapon.Damage = 26 + weapon.Damage = 30 weapon.MaxSpreadInc = 0.03 end ) diff --git a/lua/cfc_entity_stubber/cw/cw_mp5.lua b/lua/cfc_entity_stubber/cw/cw_mp5.lua index 97479a9..403be38 100644 --- a/lua/cfc_entity_stubber/cw/cw_mp5.lua +++ b/lua/cfc_entity_stubber/cw/cw_mp5.lua @@ -6,4 +6,5 @@ cfcEntityStubber.registerStub( function() weapon.HolsterTime = 0 weapon.ReloadSpeed = 1.5 weapon.VelocitySensitivity = 0 + weapon.Damage = 26 end ) diff --git a/lua/cfc_entity_stubber/cw/cw_mp7_official.lua b/lua/cfc_entity_stubber/cw/cw_mp7_official.lua index e09f843..2d2f55a 100644 --- a/lua/cfc_entity_stubber/cw/cw_mp7_official.lua +++ b/lua/cfc_entity_stubber/cw/cw_mp7_official.lua @@ -8,4 +8,5 @@ cfcEntityStubber.registerStub( function() weapon.VelocitySensitivity = 0.5 weapon.AimSpread = 0.04 weapon.HipSpread = 0.05 + weapon.Damage = 27 end ) diff --git a/lua/cfc_entity_stubber/cw/cw_ump45.lua b/lua/cfc_entity_stubber/cw/cw_ump45.lua index 242d7bc..8daaee1 100644 --- a/lua/cfc_entity_stubber/cw/cw_ump45.lua +++ b/lua/cfc_entity_stubber/cw/cw_ump45.lua @@ -6,4 +6,5 @@ cfcEntityStubber.registerStub( function() weapon.DeployTime = 0 weapon.HolsterTime = 0 weapon.VelocitySensitivity = 0 + weapon.Damage = 30 end )