2015-01-15 09:51:18 +00:00
|
|
|
class CfgVehicles {
|
2015-08-11 17:49:39 +00:00
|
|
|
class Man;
|
|
|
|
class CAManBase: Man {
|
|
|
|
class ACE_SelfActions {
|
|
|
|
class ACE_MapFlashlight {
|
|
|
|
displayName = CSTRING(Action_Flashlights);
|
|
|
|
icon = QUOTE(\a3\ui_f\data\IGUI\Cfg\VehicleToggles\lightsiconon_ca.paa);
|
2015-10-14 19:36:40 +00:00
|
|
|
condition = QUOTE(GVAR(mapIllumination) && visibleMap && {count ([ACE_player] call FUNC(getUnitFlashlights)) > 0});
|
2015-08-11 17:49:39 +00:00
|
|
|
statement = "true";
|
|
|
|
exceptions[] = {"isNotDragging", "notOnMap", "isNotInside", "isNotSitting"};
|
|
|
|
insertChildren = QUOTE(_this call DFUNC(compileFlashlightMenu));
|
|
|
|
showDisabled = 0;
|
|
|
|
priority = 99;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-05-30 04:37:41 +00:00
|
|
|
class ACE_Module;
|
|
|
|
class ACE_ModuleMap: ACE_Module {
|
2015-05-27 20:04:41 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-03-16 23:24:53 +00:00
|
|
|
category = "ACE";
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(Module_DisplayName);
|
2015-03-16 23:24:53 +00:00
|
|
|
function = QFUNC(moduleMap);
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
2015-03-16 23:24:53 +00:00
|
|
|
isGlobal = 1;
|
2015-10-19 04:34:11 +00:00
|
|
|
isSingular = 1;
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_Map_ca.paa);
|
2015-03-16 23:24:53 +00:00
|
|
|
class Arguments {
|
|
|
|
class MapIllumination {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(MapIllumination_DisplayName);
|
|
|
|
description = CSTRING(MapIllumination_Description);
|
2015-03-16 23:24:53 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-09 18:37:57 +00:00
|
|
|
defaultValue = 1;
|
2015-03-16 23:24:53 +00:00
|
|
|
};
|
2015-08-11 17:49:39 +00:00
|
|
|
class MapGlow {
|
|
|
|
displayName = CSTRING(MapGlow_DisplayName);
|
|
|
|
description = CSTRING(MapGlow_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-03-16 23:24:53 +00:00
|
|
|
class MapShake {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(MapShake_DisplayName);
|
|
|
|
description = CSTRING(MapShake_Description);
|
2015-03-16 23:24:53 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-09 18:37:57 +00:00
|
|
|
defaultValue = 1;
|
2015-03-16 23:24:53 +00:00
|
|
|
};
|
|
|
|
class MapLimitZoom {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(MapLimitZoom_DisplayName);
|
|
|
|
description = CSTRING(MapLimitZoom_Description);
|
2015-03-16 23:24:53 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-09 18:37:57 +00:00
|
|
|
defaultValue = 0;
|
2015-04-08 04:49:56 +00:00
|
|
|
};
|
|
|
|
class MapShowCursorCoordinates {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(MapShowCursorCoordinates_DisplayName);
|
|
|
|
description = CSTRING(MapShowCursorCoordinates_Description);
|
2015-04-08 04:49:56 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-09 18:37:57 +00:00
|
|
|
defaultValue = 0;
|
2015-03-16 23:24:53 +00:00
|
|
|
};
|
2015-09-29 16:36:30 +00:00
|
|
|
class DefaultChannel {
|
|
|
|
displayName = CSTRING(DefaultChannel_DisplayName);
|
|
|
|
description = CSTRING(DefaultChannel_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class disable {name = ECSTRING(common,Disabled); value = -1; default = 1;};
|
|
|
|
class global {name = "$STR_channel_global"; value = 0;};
|
|
|
|
class side {name = "$STR_channel_side"; value = 1;};
|
|
|
|
class command {name = "$STR_channel_command"; value = 2;};
|
|
|
|
class group {name = "$STR_channel_group"; value = 3;};
|
|
|
|
class vehicle {name = "$STR_channel_vehicle"; value = 4;};
|
|
|
|
class direct {name = "$STR_channel_direct"; value = 5;};
|
|
|
|
};
|
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
};
|
2015-05-12 00:29:32 +00:00
|
|
|
class ModuleDescription {
|
2015-05-27 17:04:25 +00:00
|
|
|
description = CSTRING(Module_Description);
|
2015-03-16 23:24:53 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-24 21:06:19 +00:00
|
|
|
class ACE_ModuleBlueForceTracking: ACE_Module {
|
2015-05-27 20:04:41 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-03-14 19:58:05 +00:00
|
|
|
category = "ACE";
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(BFT_Module_DisplayName);
|
2015-03-14 19:58:05 +00:00
|
|
|
function = QFUNC(blueForceTrackingModule);
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
|
|
|
isGlobal = 1;
|
2015-10-19 04:34:11 +00:00
|
|
|
isSingular = 1;
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_BFTracking_ca.paa);
|
2015-03-14 19:58:05 +00:00
|
|
|
class Arguments {
|
2015-06-21 02:46:55 +00:00
|
|
|
class Enabled {
|
|
|
|
displayName = CSTRING(BFT_Enabled_DisplayName);
|
|
|
|
description = CSTRING(BFT_Enabled_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
2015-03-14 19:58:05 +00:00
|
|
|
class Interval {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(BFT_Interval_DisplayName);
|
|
|
|
description = CSTRING(BFT_Interval_Description);
|
2015-05-12 00:29:32 +00:00
|
|
|
typeName = "NUMBER";
|
2015-03-14 19:58:05 +00:00
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class HideAiGroups {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(BFT_HideAiGroups_DisplayName);
|
|
|
|
description = CSTRING(BFT_HideAiGroups_Description);
|
2015-03-14 19:58:05 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-09 18:37:57 +00:00
|
|
|
defaultValue = 0;
|
2015-03-14 19:58:05 +00:00
|
|
|
};
|
2016-02-25 13:57:32 +00:00
|
|
|
class ShowPlayerNames {
|
|
|
|
displayName = CSTRING(BFT_ShowPlayerNames_DisplayName);
|
|
|
|
description = CSTRING(BFT_ShowPlayerNames_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
};
|
2015-05-12 00:29:32 +00:00
|
|
|
class ModuleDescription {
|
2015-05-27 17:04:25 +00:00
|
|
|
description = CSTRING(BFT_Module_Description);
|
2015-01-15 09:51:18 +00:00
|
|
|
};
|
|
|
|
};
|
2016-02-25 13:57:32 +00:00
|
|
|
};
|