ACE3/addons/common/CfgVehicles.hpp

110 lines
2.7 KiB
C++
Raw Normal View History

2015-01-12 21:34:01 +00:00
2015-01-11 18:06:21 +00:00
class CfgVehicles {
/*class Man;
class CAManBase: Man {
// @todo
class UserActions {
class ACE_Fire {
2015-01-11 18:06:21 +00:00
displayName = "";
priority = -99;
available = 1;
radius = 2.5;
radiusView = 0;
position = "";
showWindow = 0;
showIn3D = 0;
onlyForPlayer = 1;
shortcut = "DefaultAction";
2015-01-13 21:32:56 +00:00
condition = QUOTE(call GVAR(UserActionFireCondition));
statement = QUOTE(call GVAR(UserActionFire));
2015-01-11 18:06:21 +00:00
userActionID = 100;
};
};
};*/
// += needs a non inherited entry in that class, otherwise it simply overwrites
//#include <DefaultItems.hpp>
class Module_F;
class ACE_ModuleCheckPBOs: Module_F {
2015-01-12 18:22:58 +00:00
author = "$STR_ACE_Common_ACETeam";
category = "ACE";
2015-01-11 18:06:21 +00:00
displayName = "Check PBOs";
2015-01-13 18:31:26 +00:00
function = QFUNC(moduleCheckPBOs);
2015-01-11 18:06:21 +00:00
scope = 2;
isGlobal = 1;
2015-03-23 19:02:35 +00:00
icon = QUOTE(PATHTOF(UI\Icon_Module_CheckPBO_ca.paa));
2015-01-11 18:06:21 +00:00
class Arguments {
class Action {
displayName = "Action";
description = "What to do with people who do not have the right PBOs?";
class values {
class WarnOnce {
default = 1;
name = "Warn once";
value = 0;
};
class Warn {
name = "Warn (permanent)";
value = 1;
};
class Kick {
name = "Kick";
value = 2;
};
};
};
class CheckAll {
displayName = "Check all addons";
description = "Check all addons instead of only those of ACE?";
2015-01-11 18:06:21 +00:00
typeName = "BOOL";
class values {
class WarnOnce {
default = 1;
name = "No";
value = 0;
};
class Warn {
name = "Yes";
value = 1;
};
};
};
class Whitelist {
displayName = "Whitelist";
description = "What addons are allowed regardless?";
typeName = "STRING";
class values {
default = "[]";
};
};
};
};
class ACE_ModuleLSDVehicles: Module_F {
2015-01-12 18:22:58 +00:00
author = "$STR_ACE_Common_ACETeam";
category = "ACE";
2015-01-11 18:06:21 +00:00
displayName = "LSD Vehicles";
2015-01-12 18:22:58 +00:00
function = "ACE_Common_fnc_moduleLSDVehicles";
2015-01-11 18:06:21 +00:00
scope = 2;
isGlobal = 1;
class Arguments {
};
};
class Box_NATO_Support_F;
class ACE_Box_Misc: Box_NATO_Support_F {
2015-01-12 18:22:58 +00:00
author = "$STR_ACE_Common_ACETeam";
displayName = "$STR_ACE_Common_MiscItems";
2015-01-11 18:06:21 +00:00
transportMaxWeapons = 9001;
transportMaxMagazines = 9001;
transportMaxItems = 9001;
maximumload = 2000;
class TransportWeapons {};
class TransportMagazines {};
class TransportItems {};
class TransportBackpacks {};
};
2015-01-12 21:34:01 +00:00
};