2015-06-29 02:34:21 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class ACE_Module;
|
2015-07-17 15:02:38 +00:00
|
|
|
class GVAR(moduleSettings): ACE_Module {
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
2015-07-17 15:02:38 +00:00
|
|
|
displayName = CSTRING(Settings_DisplayName);
|
2017-08-12 13:25:48 +00:00
|
|
|
icon = QPATHTOF(data\Icon_Module_Spectator_ca.paa);
|
2015-07-17 15:02:38 +00:00
|
|
|
category = "ACE";
|
|
|
|
function = QFUNC(moduleSpectatorSettings);
|
|
|
|
isGlobal = 1;
|
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-06-29 02:34:21 +00:00
|
|
|
class Arguments {
|
2017-08-12 13:25:48 +00:00
|
|
|
class enableAI {
|
|
|
|
displayName = CSTRING(ai_DisplayName);
|
|
|
|
description = CSTRING(ai_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
2015-06-29 02:34:21 +00:00
|
|
|
};
|
2015-07-21 14:15:31 +00:00
|
|
|
class cameraModes {
|
|
|
|
displayName = CSTRING(modes_DisplayName);
|
|
|
|
description = CSTRING(modes_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class all {
|
|
|
|
name = CSTRING(modes_all);
|
|
|
|
value = 0;
|
|
|
|
default = 1;
|
|
|
|
};
|
|
|
|
class unit {
|
|
|
|
name = CSTRING(modes_unit);
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
class free {
|
2017-08-12 13:25:48 +00:00
|
|
|
name = "$STR_A3_Spectator_free_camera_tooltip";
|
2015-07-21 14:15:31 +00:00
|
|
|
value = 2;
|
|
|
|
};
|
|
|
|
class internal {
|
2017-08-12 13:25:48 +00:00
|
|
|
name = "$STR_A3_Spectator_1pp_camera_tooltip";
|
2015-07-21 14:15:31 +00:00
|
|
|
value = 3;
|
|
|
|
};
|
|
|
|
class external {
|
2017-08-12 13:25:48 +00:00
|
|
|
name = "$STR_A3_Spectator_3pp_camera_tooltip";
|
2015-07-21 14:15:31 +00:00
|
|
|
value = 4;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class visionModes {
|
|
|
|
displayName = CSTRING(visions_DisplayName);
|
|
|
|
description = CSTRING(visions_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class all {
|
|
|
|
name = CSTRING(modes_all);
|
|
|
|
value = 0;
|
|
|
|
default = 1;
|
|
|
|
};
|
|
|
|
class nv {
|
|
|
|
name = CSTRING(visions_nv);
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
class ti {
|
|
|
|
name = CSTRING(visions_ti);
|
|
|
|
value = 2;
|
|
|
|
};
|
|
|
|
class none {
|
|
|
|
name = "$STR_Special_None";
|
|
|
|
value = 3;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-06-29 02:34:21 +00:00
|
|
|
};
|
|
|
|
class ModuleDescription {
|
2015-07-17 15:02:38 +00:00
|
|
|
description = CSTRING(Settings_Description);
|
2015-06-29 02:34:21 +00:00
|
|
|
};
|
|
|
|
};
|
2017-08-12 13:25:48 +00:00
|
|
|
class VirtualMan_F;
|
|
|
|
class GVAR(virtual): VirtualMan_F {
|
|
|
|
author = ECSTRING(common,ACETeam);
|
2017-11-17 22:41:03 +00:00
|
|
|
displayName = CSTRING(Settings_DisplayName);
|
2017-08-12 13:25:48 +00:00
|
|
|
scope = 2;
|
|
|
|
scopeArsenal = 0;
|
|
|
|
scopeCurator = 0;
|
|
|
|
|
|
|
|
weapons[] = {};
|
|
|
|
|
|
|
|
delete ACE_Actions;
|
|
|
|
delete ACE_SelfActions;
|
|
|
|
};
|
2015-07-05 11:26:58 +00:00
|
|
|
};
|