2015-05-08 14:07:57 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class Module_F;
|
|
|
|
class ACE_ModuleViewDistance : Module_F {
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
|
|
category = "ACE";
|
2015-05-08 16:30:28 +00:00
|
|
|
displayName = "View Distance Limiter";
|
|
|
|
function = QFUNC(module);
|
2015-05-08 14:07:57 +00:00
|
|
|
scope = 2;
|
|
|
|
isGlobal = 1;
|
|
|
|
//icon = ""; // needs an icon
|
|
|
|
class Arguments {
|
2015-05-08 16:30:28 +00:00
|
|
|
class moduleViewDistanceLimit {
|
2015-05-08 14:07:57 +00:00
|
|
|
displayName = "View Distance setting limit";
|
2015-05-08 16:41:32 +00:00
|
|
|
description = "Sets the limit for how high clients can raise their view distance (< 10000)";
|
2015-05-08 16:30:28 +00:00
|
|
|
typeName = "SCALAR";
|
2015-05-09 09:56:27 +00:00
|
|
|
defaultValue = 5000;
|
2015-05-08 14:07:57 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|