forked from Bob-Murphy/A3-Antistasi-1.4
-
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added helicopter loadout support * Update fn_setPlaneLoadout.sqf
- Loading branch information
Showing
4 changed files
with
68 additions
and
135 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,43 @@ | ||
#include "..\..\..\script_component.hpp" | ||
|
||
class CfgPatches | ||
{ | ||
class PATCHNAME(AirLoadout_RF) | ||
{ | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = {"RF_Vehicles"}; | ||
skipWhenMissingDependencies = 1; | ||
author = AUTHOR; | ||
authors[] = { AUTHORS }; | ||
authorUrl = ""; | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
class A3A { | ||
class Loadouts | ||
{ | ||
class Helicopter | ||
{ | ||
class baseHelicopter; | ||
class a3a_Heli_light_03_dynamicLoadout_rf : baseHelicopter { | ||
loadout[] = {"PylonRack_19Rnd_missiles_gray_RF","PylonWeapon_1000Rnd_20x102mm_shells_gray_RF","PylonRack_19Rnd_missiles_gray_RF","PylonWeapon_1000Rnd_20x102mm_shells_gray_RF"}; | ||
}; | ||
class a3a_Heli_EC_02_rf : baseHelicopter { | ||
loadout[] = {"PylonRack_19Rnd_missiles_olive_RF","PylonRack_4Rnd_LG_scalpel","PylonRack_4Rnd_LG_scalpel","PylonRack_19Rnd_missiles_olive_RF"}; | ||
}; | ||
class a3a_AAF_Heli_light_03_dynamicLoadout_rf : a3a_Heli_light_03_dynamicLoadout_rf {}; | ||
class a3a_LDF_Heli_light_03_dynamicLoadout_rf : a3a_Heli_light_03_dynamicLoadout_rf {}; | ||
class a3a_black_Heli_light_03_dynamicLoadout_rf : a3a_Heli_light_03_dynamicLoadout_rf {}; | ||
class a3a_tan_Heli_light_03_dynamicLoadout_rf : a3a_Heli_light_03_dynamicLoadout_rf {}; | ||
class a3a_green_Heli_light_03_dynamicLoadout_rf : a3a_Heli_light_03_dynamicLoadout_rf {}; | ||
class a3a_LDF_Heli_EC_02_rf : a3a_Heli_EC_02_rf {}; | ||
class a3a_AAF_Heli_EC_02_rf : a3a_Heli_EC_02_rf {}; | ||
class a3a_black_Heli_EC_02_rf : a3a_Heli_EC_02_rf {}; | ||
class a3a_sfia_Heli_EC_02_rf : a3a_Heli_EC_02_rf {}; | ||
}; | ||
}; | ||
}; |
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