Skip to content

Commit 0f868fe

Browse files
authored
Wardrobe - Add donated CSLA configs (#11198)
* init * Donate macros * rm comment * init * apply ACEWARDROBE()
1 parent b969b39 commit 0f868fe

File tree

5 files changed

+59
-1
lines changed

5 files changed

+59
-1
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class ace_wardrobe {
2+
class ACEWARDROBE(base);
3+
class ACEWARDROBE(base_H_visor_up);
4+
class ACEWARDROBE(base_H_visor_down);
5+
class ACEWARDROBE(base_H_goggles_on);
6+
class ACEWARDROBE(base_H_goggles_off);
7+
8+
#include "ace_wardrobe_headgear.hpp"
9+
};
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
BOONIE_ROLLED(FIA_hat85Des,FIA_hat85bDes);
2+
BOONIE_ROLLED(FIA_hat85Clds,FIA_hat85bClds);
3+
BOONIE_ROLLED(CSLA_hat85Clds,CSLA_hat85bClds);
4+
BOONIE_ROLLED(CSLA_hat85Des,CSLA_hat85bDes);
5+
BOONIE_ROLLED(FIA_hat85Gn,FIA_hat85bGn);
6+
BOONIE_ROLLED(CSLA_hat85Gn,CSLA_hat85bGn);
7+
BOONIE_ROLLED(FIA_hat85Mlok,FIA_hat85bMlok);
8+
BOONIE_ROLLED(CSLA_hat85Mlok,CSLA_hat85bMlok);
9+
10+
HELMET_GOGGLES_NOCOMPONENT(US85_helmetDH132G,US85_helmetDH132G_on);
11+
HELMET_GOGGLES_NOCOMPONENT(CSLA_helmetT28G,CSLA_helmetT28G_on);
12+
HELMET_GOGGLES_NOCOMPONENT(US85_helmetSFLG,US85_helmetSFLG_on);
13+
HELMET_GOGGLES_NOCOMPONENT(CSLA_helmet53G,CSLA_helmet53G_on);
14+
15+
HELMET_VISOR(US85_helmetHGU55P,US85_helmetHGU55PC);
16+
HELMET_VISOR(US85_helmetPlt,US85_helmetPltC);
17+
HELMET_VISOR(US85_helmetPltAttack,US85_helmetPltAttackC);
18+
HELMET_VISOR(CSLA_helmetZSh5o,CSLA_helmetZSh5c);
19+
HELMET_VISOR(CSLA_helmetZSh5Ho,CSLA_helmetZSh5Hc);
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#include "script_component.hpp"
2+
3+
class CfgPatches {
4+
class SUBADDON {
5+
name = COMPONENT_NAME;
6+
units[] = {};
7+
weapons[] = {};
8+
requiredVersion = REQUIRED_VERSION;
9+
requiredAddons[] = {
10+
"ace_wardrobe",
11+
"CSLA",
12+
"US85",
13+
"FIA"
14+
};
15+
skipWhenMissingDependencies = 1;
16+
author = ECSTRING(common,ACETeam);
17+
authors[] = {"Andx [TTT]"};
18+
url = ECSTRING(main,URL);
19+
VERSION_CONFIG;
20+
addonRootClass = QUOTE(ADDON);
21+
};
22+
};
23+
24+
// ACE Wardrobe
25+
#include "ace_wardrobe.hpp"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#define SUBCOMPONENT wardrobe
2+
#define SUBCOMPONENT_BEAUTIFIED Wardrobe
3+
#include "..\script_component.hpp"
4+
5+
#include "\z\ace\addons\wardrobe\script_macros_wardrobe.hpp"

addons/compat_csla/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class CfgPatches {
66
units[] = {};
77
weapons[] = {};
88
requiredVersion = REQUIRED_VERSION;
9-
requiredAddons[] = {"ace_common", "CSLA", "US85"};
9+
requiredAddons[] = {"ace_common", "CSLA", "US85", "FIA"};
1010
skipWhenMissingDependencies = 1;
1111
author = ECSTRING(common,ACETeam);
1212
authors[] = {"Dahlgren"};

0 commit comments

Comments
 (0)