User Tools

Site Tools


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 revision Previous revision
arma2:scripting:bis_fnc_spawngroup [2016-11-01 17:14]
snakeman fixed broken code tag.
arma2:scripting:bis_fnc_spawngroup [2016-11-02 16:49] (current)
snakeman added us army and takistani army infantry cfggroup names.
Line 45: Line 45:
 </​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 69:
 </​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;​
arma2/scripting/bis_fnc_spawngroup.1478020478.txt.gz ยท Last modified: 2016-11-01 17:14 by snakeman