arma2:scripting:bis_fnc_spawngroup

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
arma2:scripting:bis_fnc_spawngroup [2016/11/01 17:14] – fixed broken code tag. snakemanarma2:scripting:bis_fnc_spawngroup [2024/08/01 22:20] (current) – links added. snakeman
Line 1: Line 1:
-====== BIS_fnc_spawnGroup ======+====== ArmA 2 BIS_fnc_spawnGroup ====== 
 + 
 +[[https://www.pmctactical.org/forum/viewforum.php?f=50|ArmA 2 Forum]], [[:arma2|ArmA 2 Home]], [[arma2:config|ArmA 2 Config]], [[arma2:file_formats|ArmA 2 File Formats]], [[arma2:missions|ArmA 2 Missions]], [[arma2:modeling|ArmA 2 3D Modeling]], [[arma2:scripting|ArmA 2 Scripting]], [[arma2:terrain|ArmA 2 Terrain]], [[arma2:texturing|ArmA 2 Texturing]], [[arma2:tools|ArmA 2 Tools]]
  
 How to create whole groups from CfgGroups class. How to create whole groups from CfgGroups class.
Line 45: Line 47:
 </code> </code>
  
-Faction - US Army PMCTODO missing infantry!+Faction - US Army
 <code cpp> <code cpp>
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_RifleSquad")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_WeaponsSquad")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_Team")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_TeamMG")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_TeamAT")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_TeamSupport")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_HeavyATTeam")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_SniperTeam")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Infantry" >> "US_DeltaForceTeam")] call BIS_fnc_spawnGroup;
 _grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Motorized" >> "US_MotorizedSection")] call BIS_fnc_spawnGroup; _grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Motorized" >> "US_MotorizedSection")] call BIS_fnc_spawnGroup;
 _grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Motorized" >> "US_MotorizedSectionAT")] call BIS_fnc_spawnGroup; _grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Motorized" >> "US_MotorizedSectionAT")] call BIS_fnc_spawnGroup;
Line 60: Line 71:
 </code> </code>
  
-Faction - Takistani Army PMCTODO missing infantry!+Faction - Takistani Army
 <code cpp> <code cpp>
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Infantry" >> "TK_InfantrySquad")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Infantry" >> "TK_InfantrySection")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Infantry" >> "TK_InfantrySectionAT")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Infantry" >> "TK_InfantrySectionAA")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Infantry" >> "TK_InfantrySectionMG")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Infantry" >> "TK_SniperTeam")] call BIS_fnc_spawnGroup;
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Infantry" >> "TK_SpecialPurposeSquad")] call BIS_fnc_spawnGroup;
 _grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Motorized" >> "TK_MotorizedInfanterySquad")] call BIS_fnc_spawnGroup; _grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Motorized" >> "TK_MotorizedInfanterySquad")] call BIS_fnc_spawnGroup;
 _grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Motorized" >> "TK_MotorizedReconSection")] call BIS_fnc_spawnGroup; _grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Motorized" >> "TK_MotorizedReconSection")] call BIS_fnc_spawnGroup;
Line 184: Line 202:
 _grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Mechanized" >> "ACR_MechanizedRecon_WDL")] call BIS_fnc_spawnGroup; _grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Mechanized" >> "ACR_MechanizedRecon_WDL")] call BIS_fnc_spawnGroup;
 </code> </code>
 +
arma2/scripting/bis_fnc_spawngroup.1478020478.txt.gz · Last modified: 2016/11/01 17:14 by snakeman

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki

All PMC web site download services are temporarily suspended until web site yearly fees have been recovered, want to download addons/mods? Then Support PMC.

If you are grateful for all the work PMC has done in the past 25 years, use Support PMC page.