2015-01-12 14:47:22 +00:00
|
|
|
class CfgVehicles {
|
2016-01-10 18:08:28 +00:00
|
|
|
class ACE_Module;
|
|
|
|
class ACE_ModuleSwitchUnits: ACE_Module {
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
category = "ACE";
|
2017-11-15 19:10:20 +00:00
|
|
|
displayName = CSTRING(DisplayName);
|
2016-01-10 18:08:28 +00:00
|
|
|
function = FUNC(module);
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
2016-01-10 18:08:28 +00:00
|
|
|
isGlobal = 1;
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_SwitchUnits_ca.paa);
|
2016-01-10 18:08:28 +00:00
|
|
|
class Arguments {
|
|
|
|
class SwitchToWest {
|
|
|
|
displayName = CSTRING(SwitchToWest_DisplayName);
|
|
|
|
description = CSTRING(SwitchToWest_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
class SwitchToEast {
|
|
|
|
displayName = CSTRING(SwitchToEast_DisplayName);
|
|
|
|
description = CSTRING(SwitchToEast_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
class SwitchToIndependent {
|
|
|
|
displayName = CSTRING(SwitchToIndependent_DisplayName);
|
|
|
|
description = CSTRING(SwitchToIndependent_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
class SwitchToCivilian {
|
|
|
|
displayName = CSTRING(SwitchToCivilian_DisplayName);
|
|
|
|
description = CSTRING(SwitchToCivilian_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
class EnableSafeZone {
|
|
|
|
displayName = CSTRING(EnableSafeZone_DisplayName);
|
|
|
|
description = CSTRING(EnableSafeZone_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class SafeZoneRadius {
|
|
|
|
displayName = CSTRING(SafeZoneRadius_DisplayName);
|
|
|
|
description = CSTRING(SafeZoneRadius_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 100;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
|
|
|
description = CSTRING(Module_Description);
|
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
};
|
2015-06-02 20:14:32 +00:00
|
|
|
};
|