From 26a9f7f38e47c29f2815d57038b771623da4baa7 Mon Sep 17 00:00:00 2001 From: Josuan Albin Date: Fri, 29 May 2015 15:31:48 +0200 Subject: [PATCH 1/2] navid and SPMG barrel swapping added - added navid class to barrel swapping config - added SPMG class to barrel swapping config --- addons/overheating/CfgWeapons.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/addons/overheating/CfgWeapons.hpp b/addons/overheating/CfgWeapons.hpp index 12ec43024f..f88aa9327b 100644 --- a/addons/overheating/CfgWeapons.hpp +++ b/addons/overheating/CfgWeapons.hpp @@ -40,7 +40,25 @@ class CfgWeapons { ACE_Overheating_SlowdownFactor[] = {1, 1, 1, 0.9}; ACE_Overheating_JamChance[] = {0, 0.0003, 0.0015, 0.0075}; }; + + class MMG_02_base_F : rifle_Base_F { + ACE_clearJamAction = ""; + ACE_checkTemperatureAction = ""; + ACE_Overheating_allowSwapBarrel = 1; + ACE_Overheating_Dispersion[] = {0, -0.001, 0.001, 0.004}; + ACE_Overheating_SlowdownFactor[] = {1, 1, 1, 0.9}; + ACE_Overheating_JamChance[] = {0, 0.0003, 0.0015, 0.0075}; + }; + class MMG_01_base_F : rifle_Base_F { + ACE_clearJamAction = ""; + ACE_checkTemperatureAction = ""; + ACE_Overheating_allowSwapBarrel = 1; + ACE_Overheating_Dispersion[] = {0, -0.001, 0.001, 0.004}; + ACE_Overheating_SlowdownFactor[] = {1, 1, 1, 0.9}; + ACE_Overheating_JamChance[] = {0, 0.0003, 0.0015, 0.0075}; + }; + class arifle_MX_SW_F : arifle_MX_Base_F { ACE_clearJamAction = ""; // Custom jam clearing action. Use empty string to undefine. ACE_Overheating_allowSwapBarrel = 1; // 1 to enable barrel swap. 0 to disable. Meant for machine guns where you can easily swap the barrel without dismantling the whole weapon. From 7603e714686f02f4321df0fcf2c0f5e67a62a833 Mon Sep 17 00:00:00 2001 From: Josuan Albin Date: Fri, 29 May 2015 22:08:13 +0200 Subject: [PATCH 2/2] removed useless entries --- addons/overheating/CfgWeapons.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/addons/overheating/CfgWeapons.hpp b/addons/overheating/CfgWeapons.hpp index f88aa9327b..7fdc08c973 100644 --- a/addons/overheating/CfgWeapons.hpp +++ b/addons/overheating/CfgWeapons.hpp @@ -42,8 +42,6 @@ class CfgWeapons { }; class MMG_02_base_F : rifle_Base_F { - ACE_clearJamAction = ""; - ACE_checkTemperatureAction = ""; ACE_Overheating_allowSwapBarrel = 1; ACE_Overheating_Dispersion[] = {0, -0.001, 0.001, 0.004}; ACE_Overheating_SlowdownFactor[] = {1, 1, 1, 0.9}; @@ -51,8 +49,6 @@ class CfgWeapons { }; class MMG_01_base_F : rifle_Base_F { - ACE_clearJamAction = ""; - ACE_checkTemperatureAction = ""; ACE_Overheating_allowSwapBarrel = 1; ACE_Overheating_Dispersion[] = {0, -0.001, 0.001, 0.004}; ACE_Overheating_SlowdownFactor[] = {1, 1, 1, 0.9};