1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //Get this addons macro
- //get the macro for the air subaddon
- //get generlized macros
- #include "../../../RD501_main/config_macros.hpp"
- class CfgPatches
- {
- class macro_patch_name(shields)
- {
- addonRootClass=macro_patch_name(vehicles)
- requiredAddons[]=
- {
- macro_patch_name(vehicles)
- };
- requiredVersion=0.1;
- units[]=
- {
- "RD501_Squad_Shield",
- "RD501_Squad_Shield_trench"
- };
- weapons[]=
- {
-
- };
- };
- };
- class CfgVehicles
- {
- class Land_House_Small_03_V1_ruins_F;
- class RD501_Squad_Shield: Land_House_Small_03_V1_ruins_F
- {
- author="$STR_A3_Bohemia_Interactive";
- mapSize=21.1;
- class SimpleObject
- {
- eden=0;
- animate[]={};
- hide[]={};
- verticalOffset=-0.023;
- verticalOffsetWorld=0;
- init="''";
- };
- editorPreview="\A3\EditorPreviews_F\Data\CfgVehicles\Land_House_Small_03_V1_ruins_F.jpg";
- scope=2;
- scopeCurator=2;
- displayName="Squad Shield";
- model="\RD501_Vehicles\static\shields\bubble\bubble.p3d";
- icon="iconObject_1x1";
- vehicleClass = macro_editor_vehicle_type(statics)
- editorCategory = macro_editor_cat(statics)
- editorSubcategory = macro_editor_cat(static_msc)
- };
- class RD501_Squad_Shield_trench: Land_House_Small_03_V1_ruins_F
- {
- author="$STR_A3_Bohemia_Interactive";
- mapSize=21.1;
- class SimpleObject
- {
- eden=0;
- animate[]={};
- hide[]={};
- verticalOffset=-0.023;
- verticalOffsetWorld=0;
- init="''";
- };
- editorPreview="\A3\EditorPreviews_F\Data\CfgVehicles\Land_House_Small_03_V1_ruins_F.jpg";
- scope=2;
- scopeCurator=2;
- displayName="Trench Shield";
- model="\RD501_Vehicles\static\shields\trench\trench.p3d";
- icon="iconObject_1x1";
- vehicleClass = macro_editor_vehicle_type(statics)
- editorCategory = macro_editor_cat(statics)
- editorSubcategory = macro_editor_cat(static_msc)
- };
- };
|