Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added IFA-ACE-Compat detonators #3326

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions A3A/addons/core/Templates/Templates/IFA/IFA_REB_AK.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ _loadoutData set ["uniforms", _rebUniforms];

_loadoutData set ["facewear", _winterGear + ["G_Bandanna_blk", "G_Bandanna_tan", "G_LIB_Dienst_Brille", "G_LIB_Dienst_Brille2","G_LIB_Scarf2_B", "G_LIB_Scarf2_G","G_LIB_Scarf_B", "G_LIB_Scarf_G"]];

if (isClass (configFile >> "CfgPatches" >> "IFA3_COMP_ACE_main")) then {
_initialRebelEquipment append ["ACE_LIB_LadungPM", "ACE_LIB_FireCord"];
};
_loadoutData set ["items_medical_basic", ["BASIC"] call A3A_fnc_itemset_medicalSupplies];
_loadoutData set ["items_medical_standard", ["STANDARD"] call A3A_fnc_itemset_medicalSupplies];
_loadoutData set ["items_medical_medic", ["MEDIC"] call A3A_fnc_itemset_medicalSupplies];
Expand Down
3 changes: 3 additions & 0 deletions A3A/addons/core/Templates/Templates/IFA/IFA_REB_FFI.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ private _initialRebelEquipment = [
"LIB_Binocular_GER"
];

if (isClass (configFile >> "CfgPatches" >> "IFA3_COMP_ACE_main")) then {
_initialRebelEquipment append ["ACE_LIB_LadungPM", "ACE_LIB_FireCord"];
};
if (A3A_hasTFAR) then {_initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
if (A3A_hasTFAR && startWithLongRangeRadio) then {_initialRebelEquipment append ["B_LIB_US_Radio"]};
if (A3A_hasTFARBeta) then {_initialRebelEquipment append ["TFAR_microdagr","TFAR_anprc154"]};
Expand Down