-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
111 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
class CfgGroups { | ||
class WEST { | ||
class PMCS_B { | ||
name = "PMC Sentinel"; | ||
|
||
class Infantry { | ||
name = "Infantry"; | ||
|
||
class pmcs_b_inf_sq { | ||
name = "Squad"; | ||
side = 1; | ||
faction = "PMCS_B"; | ||
icon = "\A3\ui_f\data\map\markers\nato\b_inf.paa"; | ||
rarityGroup = 0.5; | ||
|
||
UNIT_0(SERGEANT,PMCS_B_SquadLeader); | ||
UNIT_1(CORPORAL,PMCS_B_Marksman); | ||
UNIT_2(PRIVATE,PMCS_B_Rifleman); | ||
UNIT_3(CORPORAL,PMCS_B_Rifleman_LAT); | ||
|
||
UNIT_4(SERGEANT,PMCS_B_TeamLeader); | ||
UNIT_5(CORPORAL,PMCS_B_Autorifleman); | ||
UNIT_6(PRIVATE,PMCS_B_Rifleman); | ||
UNIT_7(CORPORAL,PMCS_B_Rifleman_LAT); | ||
}; | ||
|
||
class pmcs_b_inf_ft { | ||
name = "Fire Team"; | ||
side = 1; | ||
faction = "PMCS_B"; | ||
icon = "\A3\ui_f\data\map\markers\nato\b_inf.paa"; | ||
rarityGroup = 0.5; | ||
|
||
UNIT_0(SERGEANT,PMCS_B_TeamLeader); | ||
UNIT_1(CORPORAL,PMCS_B_Autorifleman); | ||
UNIT_2(PRIVATE,PMCS_B_Rifleman); | ||
UNIT_3(CORPORAL,PMCS_B_Rifleman_LAT); | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#define UNIT_XX(IDX,POS,RANK,UNIT) class Unit##IDX## { \ | ||
position[] = POS; \ | ||
rank = QUOTE(RANK); \ | ||
side = 1; \ | ||
vehicle = QUOTE(UNIT); \ | ||
} | ||
|
||
#define UNIT_0_POS {0,0,0} | ||
#define UNIT_0(RANK,UNIT) UNIT_XX(0,UNIT_0_POS,RANK,UNIT) | ||
|
||
#define UNIT_1_POS {5,-5,0} | ||
#define UNIT_1(RANK,UNIT) UNIT_XX(1,UNIT_1_POS,RANK,UNIT) | ||
|
||
#define UNIT_2_POS {-5,-5,0} | ||
#define UNIT_2(RANK,UNIT) UNIT_XX(2,UNIT_2_POS,RANK,UNIT) | ||
|
||
#define UNIT_3_POS {10,-10,0} | ||
#define UNIT_3(RANK,UNIT) UNIT_XX(3,UNIT_3_POS,RANK,UNIT) | ||
|
||
#define UNIT_4_POS {0,-5,0} | ||
#define UNIT_4(RANK,UNIT) UNIT_XX(4,UNIT_4_POS,RANK,UNIT) | ||
|
||
#define UNIT_5_POS {5,-10,0} | ||
#define UNIT_5(RANK,UNIT) UNIT_XX(5,UNIT_5_POS,RANK,UNIT) | ||
|
||
#define UNIT_6_POS {-5,-10,0} | ||
#define UNIT_6(RANK,UNIT) UNIT_XX(6,UNIT_6_POS,RANK,UNIT) | ||
|
||
#define UNIT_7_POS {10,-15,0} | ||
#define UNIT_7(RANK,UNIT) UNIT_XX(7,UNIT_7_POS,RANK,UNIT) |
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