Skip to content

Commit

Permalink
small update
Browse files Browse the repository at this point in the history
- added GER_2022_PANZERBESATZUNG_TROPENTARN.sqf
- changed CC modpack version for GER_2023_PzGren_TROPENTARN and FLECKTARN loadouts
  • Loading branch information
PervonHarke committed May 13, 2023
1 parent 7a06e08 commit c309778
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 2 deletions.
59 changes: 59 additions & 0 deletions PvH's EMF Kits/GER/GER_2022_PANZERBESATZUNG_TROPENTARN.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/*
* Made for Arma 3 Virtual MILSIM
*
* Author: Hark
* CC Modpack Version: V4
* [Loadout for somewhat recent 2023 German tank crews. In this loadout everyone is supposed to be a tank commander hence the SEM-70 that everyone gets.]
*
*/

params ["_role", "_unit"];

/* Custom additional condition */
private _condition = true;
private ["_availableUniforms", "_availableWeapons", "_availableMagazines", "_availableVests", "_availableItems", "_availableBackpacks", "_availableHeadgear", "_availableFacewear", "_availableAttachments", "_availableGrenades"];

/* Default gear */
private _defItems = ["ACRE_SEM70", "ItemcTab", "ACE_Canteen", "ACE_EarPlugs", "kat_guedel", "ACE_adenosine", "ACE_fieldDressing", "ACE_elasticBandage", "ACE_packingBandage", "ACE_quikclot", "ACE_epinephrine", "ACE_Flashlight_MX991", "ACE_MapTools", "ACE_morphine", "ACE_splint", "ACE_tourniquet", "ItemMap", "ItemCompass", "ItemWatch", "ACE_CableTie"];
private _defWeapons = [];
private _defAttachments = [];
private _defMagazines = ["BWA3_40Rnd_46x30_MP7"];
private _defGrenades = [];
private _defUniforms = [];
private _defVests = [];
private _defBackpacks = [];
private _defHeadgear = [];
private _defFacewear = [];

/* Crewman */
if (_condition && _role in ["CRW"]) then {
_availableUniforms = ["BWA3_Uniform_Crew_Tropen"];
_availableWeapons = ["BWA3_MP7", "rhssaf_zrak_rd7j"];
_availableAttachments = ["bwa3_optic_rsas_riser"];
_availableMagazines = [];
_availableVests = [];
_availableItems = [];
_availableGrenades = [];
_availableBackpacks = ["UK3CB_B_Invisible"];
_availableHeadgear = ["CUP_H_Ger_Beret_TankCommander_Blk"];
_availableFacewear = ["CUP_G_ESS_BLK", "CUP_G_ESS_BLK_Facewrap_Black", "CUP_G_ESS_KHK_Facewrap_Tan"];
};

/* Loadout array that's passed back to kosherArsenal */
[
/* Loadoutfile version */
"1.3",

/* Allowed Equipment array */
[
(_availableBackpacks + _defBackpacks),
(_availableVests + _defVests),
(_availableUniforms + _defUniforms),
(_availableFacewear + _defFacewear),
(_defHeadgear + _availableHeadgear),
(_defAttachments + _availableAttachments),
(_availableMagazines + _defGrenades + _defMagazines + _availableGrenades),
(_availableWeapons + _defWeapons),
(_availableItems + _defItems)
]
];
2 changes: 1 addition & 1 deletion PvH's EMF Kits/GER/GER_2023_PzGren_FLECKTARN.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Made for Arma 3 Virtual MILSIM
*
* Author: Hark
* CC Modpack Version: V3
* CC Modpack Version: V4
* [Loadout depicting the 2023 state of German Mechanized Infantry, with limitations in realism due to available mods for Arma 3.]
*
*/
Expand Down
2 changes: 1 addition & 1 deletion PvH's EMF Kits/GER/GER_2023_PzGren_TROPENTARN.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Made for Arma 3 Virtual MILSIM
*
* Author: Hark
* CC Modpack Version: V3
* CC Modpack Version: V4
* [Loadout depicting the 2023 state of German Mechanized Infantry, with limitations in realism due to available mods for Arma 3.]
*
*/
Expand Down

0 comments on commit c309778

Please sign in to comment.