PMC websites shut down October 13th 2025 unless yearly web hosting fees are paid. Please Support PMC to help keep these websites online.

Enjoyed or found this pages content useful, please Support PMC to help me keep this web page online beyond october 13th 2025 when yearly web hosting fees are due.

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

Next revision
Previous revision
arma2:scripting:bis_fnc_spawngroup [2011/08/15 03:45] – created bis_fnc_spawngroup initial page. 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 25: Line 27:
 </code> </code>
  
-PMCTODO add all CfgGroups classes or function to list/choose them (randomly too).+All the classes for BIS_fnc_spawnGroup use. 
 + 
 +Faction USMC 
 +<code cpp> 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_InfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_FireTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_FireTeam_MG")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_FireTeam_AT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_FireTeam_Support")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_HeavyATTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_SniperTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_FRTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Infantry" >> "USMC_FRTeam_Razor")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Motorized" >> "USMC_MotInfSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Motorized" >> "USMC_MotInfSection_AT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Mechanized" >> "USMC_MechInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Mechanized" >> "USMC_MechReconSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "USMC" >> "Armored" >> "USMC_TankPlatoon")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - US Army 
 +<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_MotorizedSectionAT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Motorized" >> "US_DeltaPatrolATV")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Motorized" >> "US_DeltaPatrolHMMWV")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Mechanized" >> "US_MechanizedInfantrySquadICVM2")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Mechanized" >> "US_MechanizedInfantrySquadICVMK19")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Mechanized" >> "US_MechanizedReconSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Armored" >> "US_MGSPlatoon")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Armored" >> "US_M1A2Platoon")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Armored" >> "US_M1A1Platoon")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_US" >> "Armored" >> "US_M1A2Section")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - Takistani Army 
 +<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_MotorizedReconSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Motorized" >> "TK_MotorizedPatrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Mechanized" >> "TK_MechanizedInfantrySquadBMP2")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Mechanized" >> "TK_MechanizedInfantrySquadBTR60")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Mechanized" >> "TK_MechanizedSpecialSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Mechanized" >> "TK_MechanizedReconSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Mechanized" >> "TK_MechanizedReconSectionAT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Armored" >> "TK_T72Platoon")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Armored" >> "TK_T55Platoon")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK" >> "Armored" >> "TK_T34Platoon")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - CDF (Chernarus Defence Forces) 
 +<code cpp> 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_InfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_InfSquad_Weapons")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_InfSection_AT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_InfSection_AA")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_InfSection_MG")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_InfSection_Patrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_SniperTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Motorized" >> "CDF_MotInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Motorized" >> "CDF_MotInfSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Motorized" >> "CDF_MotInfSection_Weapons")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Mechanized" >> "CDF_MechInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Mechanized" >> "CDF_MechReconSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Mechanized" >> "CDF_MechATSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Armored" >> "CDF_TankPlatoon")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - RU (Russia) 
 +<code cpp> 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RU_InfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RU_InfSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RU_InfSection_AT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RU_InfSection_AA")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RU_InfSection_MG")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RU_SniperTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RUS_ReconTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "MVD_AssaultTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Motorized" >> "RU_MotInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Motorized" >> "RU_MotInfSection_Recon")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Motorized" >> "RU_MotInfSection_Patrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Mechanized" >> "RU_MechInfSquad_1")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Mechanized" >> "RU_MechInfSquad_2")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Armored" >> "RU_TankPlatoon")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - Insurgents 
 +<code cpp> 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Infantry" >> "INS_InfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Infantry" >> "INS_InfSquad_Weapons")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Infantry" >> "INS_InfSection_AT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Infantry" >> "INS_InfSection_AA")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Infantry" >> "INS_SniperTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Infantry" >> "INS_MilitiaSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Motorized" >> "INS_MotInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Motorized" >> "INS_MotInfSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Mechanized" >> "INS_MechInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Mechanized" >> "INS_MechInfSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Mechanized" >> "INS_MechInfSection_AT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, EAST, (configFile >> "CfgGroups" >> "East" >> "INS" >> "Armored" >> "INS_TankSection")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - Independent / Resistance / Guerilla (Chernarus) 
 +<code cpp> 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_InfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_InfSquad_Assault")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_InfSquad_Weapons")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_InfTeam_1")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_InfTeam_2")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_InfTeam_AT")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_GrpInf_TeamAA")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_GrpInf_TeamSniper")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Infantry" >> "GUE_MilitiaSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Motorized" >> "GUE_MotInfSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Motorized" >> "GUE_MotInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Mechanized" >> "GUE_MechInfSection")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Mechanized" >> "GUE_MechInfSquad")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "Gue" >> "Armored" >> "GUE_TankSection")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - Independent / Resistance / Guerilla (Takistan) 
 +<code cpp> 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Infantry" >> "TK_GUE_Group")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Infantry" >> "TK_GUE_GroupWeapons")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Infantry" >> "TK_GUE_Patrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Infantry" >> "TK_GUE_ATTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Infantry" >> "TK_GUE_AATeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Infantry" >> "TK_GUE_SniperTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Motorized" >> "TK_GUE_Technicals")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Motorized" >> "TK_GUE_MotorizedGroup")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Motorized" >> "TK_GUE_MotorizedPatrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Mechanized" >> "TK_GUE_MechanizedPatrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Mechanized" >> "TK_GUE_MechanizedGroup")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Armored" >> "TK_GUE_T55Section")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_TK_GUE" >> "Armored" >> "TK_GUE_T34Platoon")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - UN (United Nations, weasels) 
 +<code cpp> 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_UN" >> "Infantry" >> "UN_Patrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_UN" >> "Motorized" >> "UN_MotorizedPatrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_UN" >> "Mechanized" >> "UN_MechanizedPatrolBMP2")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, Resistance, (configFile >> "CfgGroups" >> "Guerrila" >> "BIS_UN" >> "Mechanized" >> "UN_MechanizedPatrolM113")] call BIS_fnc_spawnGroup; 
 +</code> 
 + 
 +Faction - CZ (Army of the Czech Republic) 
 +<code cpp> 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Infantry" >> "ACR_InfantryPatrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Infantry" >> "ACR_InfantryPatrol_WDL")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Infantry" >> "ACR_InfantryTeam_DST")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Infantry" >> "ACR_InfantryTeam_WDL")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Infantry" >> "ACR_SpecialForcesTeam")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Motorized" >> "ACR_MotorizedPatrol")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Motorized" >> "ACR_SpecialForcesPatrolLandRover")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Motorized" >> "ACR_SpecialForcesPatrolATV")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Motorized" >> "ACR_MotorizedSection_DST")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Motorized" >> "ACR_MotorizedSection_WDL")] call BIS_fnc_spawnGroup; 
 +_grp = [_safePos, WEST, (configFile >> "CfgGroups" >> "West" >> "BIS_CZ" >> "Mechanized" >> "ACR_MechanizedRecon_WDL")] call BIS_fnc_spawnGroup; 
 +</code> 
arma2/scripting/bis_fnc_spawngroup.1313379902.txt.gz · Last modified: 2011/08/15 03:45 by snakeman