diff --git a/addons/compat_cup_units/$PBOPREFIX$ b/addons/compat_cup_units/$PBOPREFIX$ new file mode 100644 index 00000000..970cbc4d --- /dev/null +++ b/addons/compat_cup_units/$PBOPREFIX$ @@ -0,0 +1 @@ +z\ttt\addons\compat_cup_units \ No newline at end of file diff --git a/addons/compat_cup_units/compat_cup_units_trenches/CfgVehicles.hpp b/addons/compat_cup_units/compat_cup_units_trenches/CfgVehicles.hpp new file mode 100644 index 00000000..5cb5291a --- /dev/null +++ b/addons/compat_cup_units/compat_cup_units_trenches/CfgVehicles.hpp @@ -0,0 +1,11 @@ +class CfgVehicles { + + class CUP_B_RUS_Patrol_bag_base; + class CUP_B_RUS_Patrol_bag_6E5_Desert: CUP_B_RUS_Patrol_bag_base { + //ace_trenches_hasTrenchTool = 1; + }; + + class CUP_B_RUS_Patrol_bag_6E5_Summer: CUP_B_RUS_Patrol_bag_base { + //ace_trenches_hasTrenchTool = 1; + }; +}; \ No newline at end of file diff --git a/addons/compat_cup_units/compat_cup_units_trenches/CfgWeapons.hpp b/addons/compat_cup_units/compat_cup_units_trenches/CfgWeapons.hpp new file mode 100644 index 00000000..1c486926 --- /dev/null +++ b/addons/compat_cup_units/compat_cup_units_trenches/CfgWeapons.hpp @@ -0,0 +1,11 @@ +class CfgWeapons { + + class CUP_Vest_Camo_Base; + class CUP_V_O_SLA_Flak_Vest01: CUP_Vest_Camo_Base { + //ace_trenches_hasTrenchTool = 1; + }; + + class CUP_V_O_SLA_Carrier_Belt: CUP_Vest_Camo_Base { + //ace_trenches_hasTrenchTool = 1; + }; +}; \ No newline at end of file diff --git a/addons/compat_cup_units/compat_cup_units_trenches/README.md b/addons/compat_cup_units/compat_cup_units_trenches/README.md new file mode 100644 index 00000000..6fc73f47 --- /dev/null +++ b/addons/compat_cup_units/compat_cup_units_trenches/README.md @@ -0,0 +1,15 @@ +# Compat CUP Units - Trenches + +## Klappspaten + +Fügt ausgewählten Vesten bzw. Rucksäcken die Funktion des "ACE_EntrechningTools" hinzu. + +- `CUP_V_O_SLA_Flak_Vest01` +- `CUP_V_O_SLA_Carrier_Belt` + +- `CUP_B_RUS_Patrol_bag_6E5_Desert` +- `CUP_B_RUS_Patrol_bag_6E5_Summer` + +## Maintainer + +- Andx diff --git a/addons/compat_cup_units/compat_cup_units_trenches/config.cpp b/addons/compat_cup_units/compat_cup_units_trenches/config.cpp new file mode 100644 index 00000000..9b68d0a8 --- /dev/null +++ b/addons/compat_cup_units/compat_cup_units_trenches/config.cpp @@ -0,0 +1,18 @@ +#include "script_component.hpp" + +class CfgPatches { + class SUBADDON { + author = ECSTRING(main,TacticalTrainingTeam); + authors[] = {"Andx"}; + name = COMPONENT_NAME; + addonRootClass = QUOTE(ADDON); + requiredVersion = REQUIRED_VERSION; + requiredAddons[] = {"ace_trenches", "CUP_Creatures_People_LoadOrder"}; + units[] = {}; + weapons[] = {}; + VERSION_CONFIG; + }; +}; + +#include "CfgWeapons.hpp" +#include "CfgVehicles.hpp" \ No newline at end of file diff --git a/addons/compat_cup_units/compat_cup_units_trenches/script_component.hpp b/addons/compat_cup_units/compat_cup_units_trenches/script_component.hpp new file mode 100644 index 00000000..b796c681 --- /dev/null +++ b/addons/compat_cup_units/compat_cup_units_trenches/script_component.hpp @@ -0,0 +1,4 @@ +#define SUBCOMPONENT trenches +#define SUBCOMPONENT_BEAUTIFIED Trenches +#include "..\script_component.hpp" + diff --git a/addons/compat_cup_units/config.cpp b/addons/compat_cup_units/config.cpp new file mode 100644 index 00000000..1ede14ab --- /dev/null +++ b/addons/compat_cup_units/config.cpp @@ -0,0 +1,15 @@ +#include "script_component.hpp" + +class CfgPatches { + class ADDON { + name = COMPONENT_NAME; + units[] = {}; + weapons[] = {}; + requiredVersion = REQUIRED_VERSION; + requiredAddons[] = {"ttt_common","CUP_Creatures_People_LoadOrder"}; + author = ECSTRING(main,TacticalTrainingTeam); + authors[] = {"Andx"}; + url = ECSTRING(main,URL); + VERSION_CONFIG; + }; +}; \ No newline at end of file diff --git a/addons/compat_cup_units/readme.md b/addons/compat_cup_units/readme.md new file mode 100644 index 00000000..604ed553 --- /dev/null +++ b/addons/compat_cup_units/readme.md @@ -0,0 +1,5 @@ +# Compat CUP Units + +## Maintainer + +- Andx diff --git a/addons/compat_cup_units/script_component.hpp b/addons/compat_cup_units/script_component.hpp new file mode 100644 index 00000000..9a417229 --- /dev/null +++ b/addons/compat_cup_units/script_component.hpp @@ -0,0 +1,17 @@ +#define COMPONENT compat_cup_units +#define COMPONENT_BEAUTIFIED Compat Cup Units +#include "\z\ttt\addons\main\script_mod.hpp" + +// #define DEBUG_MODE_FULL +// #define DISABLE_COMPILE_CACHE +// #define ENABLE_PERFORMANCE_COUNTERS + +#ifdef DEBUG_ENABLED_BLANK + #define DEBUG_MODE_FULL +#endif + +#ifdef DEBUG_SETTINGS_BLANK + #define DEBUG_SETTINGS DEBUG_SETTINGS_BLANK +#endif + +#include "\z\ttt\addons\main\script_macros.hpp" \ No newline at end of file