2015-05-08 14:07:57 +00:00
|
|
|
class CfgVehicles {
|
2015-05-09 11:05:36 +00:00
|
|
|
class ACE_Module;
|
|
|
|
class GVAR(ModuleSettings) : ACE_Module {
|
2015-05-27 20:04:41 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-05-08 14:07:57 +00:00
|
|
|
category = "ACE";
|
2015-05-09 11:05:36 +00:00
|
|
|
function = QUOTE(DFUNC(initModule));
|
2015-06-06 02:02:24 +00:00
|
|
|
displayName = CSTRING(Module_DisplayName);
|
2015-05-08 14:07:57 +00:00
|
|
|
scope = 2;
|
|
|
|
isGlobal = 1;
|
2015-10-19 04:34:11 +00:00
|
|
|
isSingular = 1;
|
2015-05-08 14:07:57 +00:00
|
|
|
//icon = ""; // needs an icon
|
|
|
|
class Arguments {
|
2015-05-14 19:36:12 +00:00
|
|
|
class moduleViewDistanceEnabled {
|
2015-06-06 02:02:24 +00:00
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
|
|
description = CSTRING(enabled_Description);
|
2015-05-14 19:36:12 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-05-08 16:30:28 +00:00
|
|
|
class moduleViewDistanceLimit {
|
2015-06-06 02:02:24 +00:00
|
|
|
displayName = CSTRING(limit_DisplayName);
|
|
|
|
description = CSTRING(limit_Description);
|
2015-05-09 12:51:23 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 10000;
|
2015-05-08 14:07:57 +00:00
|
|
|
};
|
2015-05-16 22:53:55 +00:00
|
|
|
};
|
2015-06-06 02:02:24 +00:00
|
|
|
class ModuleDescription {
|
|
|
|
description = CSTRING(Module_Description);
|
2015-05-16 22:53:55 +00:00
|
|
|
sync[] = {};
|
2015-05-08 14:07:57 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|