-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove hard hearing & refuel dependencies
- Loading branch information
Showing
8 changed files
with
117 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,15 @@ | ||
class vn_b_headgear_base; | ||
class vn_b_helmet_aph6_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_aph6_02_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
ACE_Protection = 1; | ||
}; | ||
class vn_b_helmet_sph4_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_sph4_02_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
ACE_Protection = 1; | ||
}; | ||
class vn_b_helmet_t56_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_svh4_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_svh4_02_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
ACE_Protection = 1; | ||
}; | ||
|
||
class vn_o_headgear_base; | ||
class vn_o_helmet_tsh3_01: vn_o_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_o_helmet_zsh3_01: vn_o_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_o_helmet_zsh3_01; | ||
class vn_o_helmet_zsh3_02: vn_o_helmet_zsh3_01 { | ||
ACE_Protection = 1; | ||
}; | ||
class vn_o_helmet_shl61_01: vn_o_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
class CfgWeapons { | ||
class vn_b_headgear_base; | ||
class vn_b_helmet_aph6_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_aph6_02_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_sph4_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_sph4_02_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_t56_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_svh4_01_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_b_helmet_svh4_02_01: vn_b_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
|
||
class vn_o_headgear_base; | ||
class vn_o_helmet_tsh3_01: vn_o_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_o_helmet_zsh3_01: vn_o_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
class vn_o_helmet_shl61_01: vn_o_headgear_base { | ||
HEARING_PROTECTION_VICCREW; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include "script_component.hpp" | ||
#include "\z\ace\addons\hearing\script_macros_hearingProtection.hpp" | ||
|
||
class CfgPatches { | ||
class SUBADDON { | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = { | ||
"loadorder_f_vietnam", | ||
"ace_hearing" | ||
}; | ||
skipWhenMissingDependencies = 1; | ||
author = ECSTRING(common,ACETeam); | ||
url = ECSTRING(main,URL); | ||
VERSION_CONFIG; | ||
|
||
addonRootClass = QUOTE(ADDON); | ||
}; | ||
}; | ||
|
||
#include "CfgWeapons.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#define SUBCOMPONENT hearing | ||
#define SUBCOMPONENT_BEAUTIFIED Hearing | ||
#include "..\script_component.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters