mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
44466e8be8
Conflicts: addons/map/CfgVehicles.hpp addons/medical/CfgVehicles.hpp Conflicts: addons/map/CfgVehicles.hpp addons/medical/CfgVehicles.hpp addons/optionsmenu/stringtable.xml
215 lines
7.2 KiB
C++
215 lines
7.2 KiB
C++
class CfgVehicles {
|
|
class Logic;
|
|
class Module_F: Logic {
|
|
class ModuleDescription {};
|
|
};
|
|
class ACE_ModuleRespawn: Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "$STR_ACE_Respawn_Module_DisplayName";
|
|
function = QFUNC(module);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_Respawn_ca.paa));
|
|
|
|
class Arguments {
|
|
class SavePreDeathGear {
|
|
displayName = "$STR_ACE_Respawn_SavePreDeathGear_DisplayName";
|
|
description = "$STR_ACE_Respawn_SavePreDeathGear_Description";
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
|
|
class RemoveDeadBodiesDisconnected {
|
|
displayName = "$STR_ACE_Respawn_RemoveDeadBodiesDisconnected_DisplayName";
|
|
description = "$STR_ACE_Respawn_RemoveDeadBodiesDisconnected_Description";
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
};
|
|
class ModuleDescription: ModuleDescription {
|
|
description = "$STR_ACE_Respawn_Module_Description";
|
|
};
|
|
};
|
|
|
|
class ACE_ModuleFriendlyFire: Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "$STR_ACE_FriendlyFire_Module_DisplayName";
|
|
function = QFUNC(moduleFriendlyFire);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_FriendlyFire_ca.paa));
|
|
|
|
class Arguments {};
|
|
class ModuleDescription: ModuleDescription {
|
|
description = "$STR_ACE_FriendlyFire_Module_Description";
|
|
};
|
|
};
|
|
|
|
class ACE_ModuleRallypoint: Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "$STR_ACE_Rallypoint_Module_DisplayName";
|
|
function = QFUNC(moduleRallypoint);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_Rallypoint_ca.paa));
|
|
|
|
class Arguments {};
|
|
class ModuleDescription: ModuleDescription {
|
|
description = "$STR_ACE_Rallypoint_Module_Description";
|
|
};
|
|
};
|
|
|
|
// team leader
|
|
class Man;
|
|
class CAManBase : Man {
|
|
class ACE_SelfActions {
|
|
class ACE_MoveRallypoint {
|
|
displayName = "$STR_ACE_Rallypoint_MoveRallypoint";
|
|
condition = QUOTE([ARR_2(_player, side group _player)] call FUNC(canMoveRallypoint));
|
|
statement = QUOTE([ARR_2(_player, side group _player)] call FUNC(moveRallypoint));
|
|
showDisabled = 0;
|
|
priority = -0.5;
|
|
};
|
|
};
|
|
};
|
|
|
|
// rallypoints
|
|
class FlagCarrier;
|
|
class Flag_NATO_F: FlagCarrier {
|
|
class ACE_Actions;
|
|
};
|
|
|
|
class Flag_CSAT_F: FlagCarrier {
|
|
class ACE_Actions;
|
|
};
|
|
|
|
class Flag_AAF_F: FlagCarrier {
|
|
class ACE_Actions;
|
|
};
|
|
|
|
// static
|
|
class ACE_Rallypoint_West_Base: Flag_NATO_F {
|
|
XEH_ENABLED;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
displayName = "$STR_ACE_Respawn_RallypointWestBase";
|
|
vehicleClass = QGVAR(Rallypoints);
|
|
|
|
class ACE_Actions: ACE_Actions {
|
|
class ACE_Teleport {
|
|
displayName = "$STR_ACE_Respawn_TeleportToRallypoint";
|
|
distance = 4;
|
|
condition = QUOTE(side group _player == west);
|
|
statement = QUOTE([ARR_3(_player,side group _player,'ACE_Rallypoint_West')] call FUNC(teleportToRallypoint));
|
|
position = "[-0.05,-0.35,-2.6]";
|
|
showDisabled = 1;
|
|
priority = 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
class ACE_Rallypoint_East_Base: Flag_CSAT_F {
|
|
XEH_ENABLED;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
displayName = "$STR_ACE_Respawn_RallypointEastBase";
|
|
vehicleClass = QGVAR(Rallypoints);
|
|
|
|
class ACE_Actions: ACE_Actions {
|
|
class ACE_Teleport {
|
|
displayName = "$STR_ACE_Respawn_TeleportToRallypoint";
|
|
distance = 4;
|
|
condition = QUOTE(side group _player == east);
|
|
statement = QUOTE([ARR_3(_player,side group _player,'ACE_Rallypoint_East')] call FUNC(teleportToRallypoint));
|
|
position = "[-0.05,-0.35,-2.6]";
|
|
showDisabled = 1;
|
|
priority = 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
class ACE_Rallypoint_Independent_Base: Flag_AAF_F {
|
|
XEH_ENABLED;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
displayName = "$STR_ACE_Respawn_RallypointIndependentBase";
|
|
vehicleClass = QGVAR(Rallypoints);
|
|
|
|
class ACE_Actions: ACE_Actions {
|
|
class ACE_Teleport {
|
|
displayName = "$STR_ACE_Respawn_TeleportToRallypoint";
|
|
distance = 4;
|
|
condition = QUOTE(side group _player == independent);
|
|
statement = QUOTE([ARR_3(_player,side group _player,'ACE_Rallypoint_Independent')] call FUNC(teleportToRallypoint));
|
|
position = "[-0.05,-0.35,-2.6]";
|
|
showDisabled = 1;
|
|
priority = 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
// moveable
|
|
class ACE_Rallypoint_West: Flag_NATO_F {
|
|
XEH_ENABLED;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
displayName = "$STR_ACE_Respawn_RallypointWest";
|
|
vehicleClass = QGVAR(Rallypoints);
|
|
|
|
class ACE_Actions: ACE_Actions {
|
|
class ACE_Teleport {
|
|
displayName = "$STR_ACE_Respawn_TeleportToBase";
|
|
distance = 4;
|
|
condition = QUOTE(side group _player == west);
|
|
statement = QUOTE([ARR_3(_player,side group _player,'ACE_Rallypoint_West_Base')] call FUNC(teleportToRallypoint));
|
|
position = "[-0.05,-0.35,-2.6]";
|
|
showDisabled = 1;
|
|
priority = 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
class ACE_Rallypoint_East: Flag_CSAT_F {
|
|
XEH_ENABLED;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
displayName = "$STR_ACE_Respawn_RallypointEast";
|
|
vehicleClass = QGVAR(Rallypoints);
|
|
|
|
class ACE_Actions: ACE_Actions {
|
|
class ACE_Teleport {
|
|
displayName = "$STR_ACE_Respawn_TeleportToBase";
|
|
distance = 4;
|
|
condition = QUOTE(side group _player == east);
|
|
statement = QUOTE([ARR_3(_player,side group _player,'ACE_Rallypoint_East_Base')] call FUNC(teleportToRallypoint));
|
|
position = "[-0.05,-0.35,-2.6]";
|
|
showDisabled = 1;
|
|
priority = 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
class ACE_Rallypoint_Independent: Flag_AAF_F {
|
|
XEH_ENABLED;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
displayName = "$STR_ACE_Respawn_RallypointIndependent";
|
|
vehicleClass = QGVAR(Rallypoints);
|
|
|
|
class ACE_Actions: ACE_Actions {
|
|
class ACE_Teleport {
|
|
displayName = "$STR_ACE_Respawn_TeleportToBase";
|
|
distance = 4;
|
|
condition = QUOTE(side group _player == independent);
|
|
statement = QUOTE([ARR_3(_player,side group _player,'ACE_Rallypoint_Independent_Base')] call FUNC(teleportToRallypoint));
|
|
position = "[-0.05,-0.35,-2.6]";
|
|
showDisabled = 1;
|
|
priority = 1;
|
|
};
|
|
};
|
|
};
|
|
};
|