Ambient Combat Manager - Group types: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(ACM Group types)
 
m (Text replacement - "\{\{( *)Informative( *)\|" to "{{$1Feature$2|$2Informative$2|")
 
(19 intermediate revisions by 8 users not shown)
Line 1: Line 1:
Group types used with the [[Ambient Combat Manager]].
By default the ACM will select group types from ''CfgGroups'', but you may want to use only a number of specific group types.
You have the possibility of overriding the group type database with your own database, by using two functions.


By default the ACM will select group types from ''CfgGroups'', but you may want to use only a number of specific group types. You have the possibility of overriding the group type database with your own database, by using two functions.
{{cc|You can pass both actual CfgGroups Config entries or class name Strings.}}
[<ACM reference | Object>, <types | Array of Configs and / or Strings>] [[call]] [[BIS_ACM_addGroupClassesFunc]];


  {{codecomment|//You can pass both actual CfgGroups Config entries or class name Strings.}}
{{cc|Passing an empty types Array will completely disable the custom database and switch back to the default.}}
  [<ACM reference | Object>, <types | Array of Configs and / or Strings>] call BIS_ACM_addGroupClassesFunc;
[<ACM reference | Object>, <types | Array of Configs and / or Strings>] [[call]] [[BIS_ACM_removeGroupClassesFunc]];


  {{codecomment|//Passing an empty types Array will completely disable the custom database and switch back to the default.}}
  [<ACM reference | Object>, <types | Array of Configs and / or Strings>] call BIS_ACM_removeGroupClassesFunc;


----
{{Feature | Informative | See [[:Category:CfgGroups]] for possible group values and config paths.}}


<pre>
// USMC
USMC_InfSquad
USMC_FireTeam
USMC_FireTeam_MG
USMC_FireTeam_AT
USMC_FireTeam_Support
USMC_HeavyATTeam
USMC_SniperTeam
USMC_FRTeam
USMC_FRTeam_Razor


USMC_MotInfSection
Rest of the ACM functions: [[Ambient Combat Manager - Functions]]
USMC_MotInfSection_AT
 
USMC_MechInfSquad
USMC_MechReconSection
 
USMC_TankPlatoon
 
USMC_AH1ZSquadron
USMC_UH1YSquadron
USMC_MV22Squadron
USMC_MQ9Squadron
USMC_F35Squadron
USMC_AV8BFighterSquadron
USMC_AV8BBomberSquadron
 
 
// CDF
CDF_InfSquad
CDF_InfSquad_Weapons
CDF_InfSection_AT
CDF_InfSection_AA
CDF_InfSection_MG
CDF_InfSection_Patrol
CDF_SniperTeam
 
CDF_MotInfSquad
CDF_MotInfSection
CDF_MotInfSection_Weapons
 
CDF_MechInfSquad
CDF_MechReconSection
CDF_MechATSection
 
CDF_TankPlatoon
 
CDF_Mi24DSquadron
CDF_Mi8Squadron
 
 
// RU
RU_InfSquad
RU_InfSection
RU_InfSection_AT
RU_InfSection_AA
RU_InfSection_MG
RU_SniperTeam
RUS_ReconTeam
MVD_AssaultTeam
 
RU_MotInfSquad
RU_MotInfSection_Recon
RU_MotInfSection_Patrol
 
RU_MechInfSquad_1
RU_MechInfSquad_2
 
RU_TankPlatoon
 
RU_Mi24VSquadron
RU_Mi24PSquadron
RU_Pchela1TSquadron
RU_Ka52Squadron
RU_Mi8Squadron
RU_Su34FighterSquadron
 
 
// INS
INS_InfSquad
INS_InfSquad_Weapons
INS_InfSection_AT
INS_InfSection_AA
INS_SniperTeam
INS_MilitiaSquad
 
INS_MotInfSquad
INS_MotInfSection
 
INS_MechInfSquad
INS_MechInfSection
INS_MechInfSection_AT
 
INS_TankSection
 
INS_Mi8Squadron
 
 
// GUE
GUE_InfSquad
GUE_InfSquad_Assault
GUE_InfSquad_Weapons
GUE_InfTeam_1
GUE_InfTeam_2
GUE_InfTeam_AT
GUE_GrpInf_TeamAA
GUE_GrpInf_TeamSniper
GUE_MilitiaSquad


GUE_MotInfSection
GUE_MotInfSquad


GUE_MechInfSection
{{GameCategory|arma2|Editing}}
GUE_MechInfSquad
 
GUE_TankSection
</pre>
 
----
 
Rest of the ACM functions: [[Ambient Combat Manager - Functions]]

Latest revision as of 00:59, 7 February 2021

By default the ACM will select group types from CfgGroups, but you may want to use only a number of specific group types. You have the possibility of overriding the group type database with your own database, by using two functions.

// You can pass both actual CfgGroups Config entries or class name Strings.
[<ACM reference | Object>, <types | Array of Configs and / or Strings>] call BIS_ACM_addGroupClassesFunc;
// Passing an empty types Array will completely disable the custom database and switch back to the default.
[<ACM reference | Object>, <types | Array of Configs and / or Strings>] call BIS_ACM_removeGroupClassesFunc;


See Category:CfgGroups for possible group values and config paths.


Rest of the ACM functions: Ambient Combat Manager - Functions