2015-06-27 02:11:57 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class ACE_Module;
|
|
|
|
class GVAR(module): ACE_Module {
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
category = "ACE_missionModules";
|
|
|
|
displayName = CSTRING(DisplayName);
|
|
|
|
function = QFUNC(moduleInit);
|
2017-12-12 15:54:48 +00:00
|
|
|
scope = 2;
|
2015-08-06 22:32:12 +00:00
|
|
|
isGlobal = 1;
|
2015-06-27 02:11:57 +00:00
|
|
|
isTriggerActivated = 0;
|
|
|
|
isDisposable = 0;
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_Slideshow_ca.paa);
|
2015-06-27 02:11:57 +00:00
|
|
|
class Arguments {
|
|
|
|
class Objects {
|
|
|
|
displayName = CSTRING(Objects_DisplayName);
|
|
|
|
description = CSTRING(Objects_Description);
|
|
|
|
typeName = "STRING";
|
|
|
|
defaultValue = "";
|
|
|
|
};
|
|
|
|
class Controllers {
|
|
|
|
displayName = CSTRING(Controllers_DisplayName);
|
|
|
|
description = CSTRING(Controllers_Description);
|
|
|
|
typeName = "STRING";
|
|
|
|
defaultValue = "";
|
|
|
|
};
|
|
|
|
class Images {
|
|
|
|
displayName = CSTRING(Images_DisplayName);
|
|
|
|
description = CSTRING(Images_Description);
|
|
|
|
typeName = "STRING";
|
|
|
|
defaultValue = "";
|
|
|
|
};
|
|
|
|
class Names {
|
|
|
|
displayName = CSTRING(Names_DisplayName);
|
|
|
|
description = CSTRING(Names_Description);
|
|
|
|
typeName = "STRING";
|
|
|
|
defaultValue = "";
|
|
|
|
};
|
2017-02-24 13:08:18 +00:00
|
|
|
class SetName {
|
|
|
|
displayName = CSTRING(SetName_DisplayName);
|
|
|
|
description = CSTRING(SetName_Description);
|
|
|
|
typeName = "STRING";
|
|
|
|
defaultValue = "";
|
|
|
|
};
|
2015-06-29 19:07:51 +00:00
|
|
|
class Duration {
|
|
|
|
displayName = CSTRING(Duration_DisplayName);
|
|
|
|
description = CSTRING(Duration_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
2015-06-27 02:11:57 +00:00
|
|
|
};
|
|
|
|
class ModuleDescription {
|
|
|
|
description = CSTRING(Description);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|