mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
156bba3321
Conflicts: addons/common/CfgVehicles.hpp addons/common/stringtable.xml addons/explosives/stringtable.xml addons/hearing/CfgVehicles.hpp addons/hearing/stringtable.xml addons/interaction/stringtable.xml addons/map/CfgVehicles.hpp addons/map/stringtable.xml addons/medical/CfgVehicles.hpp addons/medical/stringtable.xml addons/nametags/stringtable.xml addons/respawn/stringtable.xml addons/switchunits/CfgVehicles.hpp addons/switchunits/stringtable.xml Conflicts: addons/common/CfgVehicles.hpp addons/common/stringtable.xml addons/explosives/stringtable.xml addons/hearing/stringtable.xml addons/interaction/stringtable.xml addons/map/CfgVehicles.hpp addons/map/stringtable.xml addons/medical/CfgVehicles.hpp addons/medical/stringtable.xml addons/nametags/stringtable.xml addons/respawn/stringtable.xml addons/switchunits/CfgVehicles.hpp addons/switchunits/stringtable.xml
127 lines
3.5 KiB
C++
127 lines
3.5 KiB
C++
|
|
class CfgVehicles {
|
|
/*class Man;
|
|
class CAManBase: Man {
|
|
// @todo
|
|
class UserActions {
|
|
class ACE_Fire {
|
|
displayName = "";
|
|
priority = -99;
|
|
available = 1;
|
|
radius = 2.5;
|
|
radiusView = 0;
|
|
position = "";
|
|
showWindow = 0;
|
|
showIn3D = 0;
|
|
onlyForPlayer = 1;
|
|
shortcut = "DefaultAction";
|
|
condition = QUOTE(call GVAR(UserActionFireCondition));
|
|
statement = QUOTE(call GVAR(UserActionFire));
|
|
userActionID = 100;
|
|
};
|
|
};
|
|
};*/
|
|
|
|
// += needs a non inherited entry in that class, otherwise it simply overwrites
|
|
//#include <DefaultItems.hpp>
|
|
|
|
class Logic;
|
|
class Module_F: Logic {
|
|
class ModuleDescription {};
|
|
};
|
|
class ACE_ModuleCheckPBOs: Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "$STR_ACE_Common_CheckPBO_DisplayName";
|
|
function = QFUNC(moduleCheckPBOs);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_CheckPBO_ca.paa));
|
|
class Arguments {
|
|
class Action {
|
|
displayName = "$STR_ACE_Common_CheckPBO_Action_DisplayName";
|
|
description = "$STR_ACE_Common_CheckPBO_Action_Description";
|
|
class values {
|
|
class WarnOnce {
|
|
default = 1;
|
|
name = "$STR_ACE_Common_CheckPBO_Action_WarnOnce";
|
|
value = 0;
|
|
};
|
|
class Warn {
|
|
name = "$STR_ACE_Common_CheckPBO_Action_WarnPerm";
|
|
value = 1;
|
|
};
|
|
class Kick {
|
|
name = "$STR_ACE_Common_CheckPBO_Action_Kick";
|
|
value = 2;
|
|
};
|
|
};
|
|
};
|
|
class CheckAll {
|
|
displayName = "$STR_ACE_Common_CheckPBO_CheckAll_DisplayName";
|
|
description = "$STR_ACE_Common_CheckPBO_CheckAll_Description";
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class Whitelist {
|
|
displayName = "$STR_ACE_Common_CheckPBO_Whitelist_DisplayName";
|
|
description = "$STR_ACE_Common_CheckPBO_Whitelist_Description";
|
|
typeName = "STRING";
|
|
class values {
|
|
default = "[]";
|
|
};
|
|
};
|
|
};
|
|
class ModuleDescription: ModuleDescription {
|
|
description = "$STR_ACE_Common_CheckPBO_Description";
|
|
};
|
|
};
|
|
|
|
class ACE_ModuleLSDVehicles: Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "$STR_ACE_Common_LSDVehicles_DisplayName";
|
|
function = "ACE_Common_fnc_moduleLSDVehicles";
|
|
scope = 2;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_LSD_ca.paa));
|
|
isGlobal = 1;
|
|
class Arguments {
|
|
};
|
|
class ModuleDescription: ModuleDescription {
|
|
description = "$STR_ACE_Common_LSDVehicles_Description";
|
|
sync[] = {"AnyVehicle"};
|
|
};
|
|
};
|
|
|
|
class Box_NATO_Support_F;
|
|
class ACE_Box_Misc: Box_NATO_Support_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
displayName = "$STR_ACE_Common_MiscItems";
|
|
transportMaxWeapons = 9001;
|
|
transportMaxMagazines = 9001;
|
|
transportMaxItems = 9001;
|
|
maximumload = 9001;
|
|
|
|
class TransportWeapons {};
|
|
class TransportMagazines {};
|
|
class TransportItems {};
|
|
class TransportBackpacks {};
|
|
};
|
|
|
|
class Item_Base_F;
|
|
class ACE_bananaItem: Item_Base_F {
|
|
scope = 2;
|
|
scopeCurator = 2;
|
|
displayName = "$STR_ACE_Common_bananaDisplayName";
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
vehicleClass = "Items";
|
|
class TransportItems
|
|
{
|
|
class ACE_banana
|
|
{
|
|
name = "ACE_banana";
|
|
count = 1;
|
|
};
|
|
};
|
|
};
|
|
}; |