forked from Bob-Murphy/A3-Antistasi-1.4
-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3441 from official-antistasi-community/EF-MJTF
Expeditionary Forces MJTF factions
- Loading branch information
Showing
8 changed files
with
2,178 additions
and
9 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,33 @@ | ||
#include "..\..\..\script_component.hpp" | ||
|
||
class CfgPatches | ||
{ | ||
class PATCHNAME(AirLoadout_EF) | ||
{ | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = {"EF_Data"}; | ||
skipWhenMissingDependencies = 1; | ||
author = AUTHOR; | ||
authors[] = { AUTHORS }; | ||
authorUrl = ""; | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
class A3A { | ||
class Loadouts | ||
{ | ||
class Helicopter | ||
{ | ||
class baseHelicopter; | ||
class EF_B_AH99J_NATO : baseHelicopter{ | ||
loadout[] = { "PylonRack_12Rnd_missiles","PylonMissile_1Rnd_LG_scalpel","PylonRack_12Rnd_missiles","PylonRack_12Rnd_missiles","PylonMissile_1Rnd_LG_scalpel","PylonRack_12Rnd_missiles","EF_PylonMissile_Missile_Sidearm_x1","EF_PylonMissile_Titan_NLOS_2Rnd","EF_PylonMissile_Titan_NLOS_2Rnd","EF_PylonMissile_Missile_Sidearm_x1" }; | ||
}; | ||
class EF_B_AH99J_MJTF_Wdl : EF_B_AH99J_NATO {}; | ||
class EF_B_AH99J_MJTF_Des : EF_B_AH99J_NATO {}; | ||
}; | ||
}; | ||
}; |
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
Oops, something went wrong.