2015-04-05 00:17:43 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class ACE_Module;
|
|
|
|
class ACE_moduleAllowConfigExport: ACE_Module {
|
|
|
|
scope = 2;
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_AllowConfigExport_Module_DisplayName";
|
2015-04-05 00:17:43 +00:00
|
|
|
//icon = "";
|
|
|
|
category = "ACE";
|
|
|
|
function = QUOTE(DFUNC(moduleAllowConfigExport));
|
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
|
|
class Arguments {
|
|
|
|
class allowconfigurationExport {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_AllowConfigExport_allowconfigurationExport_DisplayName";
|
|
|
|
description = "$STR_AllowConfigExport_allowconfigurationExport_Description";
|
2015-04-05 00:17:43 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-05 21:08:42 +00:00
|
|
|
defaultValue = 1;
|
2015-04-05 00:17:43 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
2015-05-11 22:24:12 +00:00
|
|
|
description = "$STR_AllowConfigExport_Module_Description";
|
2015-04-05 00:17:43 +00:00
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|