User Tools

Site Tools


arma2:scripting:bis_fnc_spawngroup

BIS_fnc_spawnGroup

How to create whole groups from CfgGroups class.

First you need to have Functions module active in your mission, easiest way is to place this gamelogic in mission editor. Use F7 to select modules, then click on the map and choose “Functions” from the menu. You also need to/should add into your mission check that is the functions manager already running and initialized.

Check if functions manager has initialized:

waituntil
{
	(!isNil "BIS_fnc_init");
};

Then you can start to create groups listed in CfgGroups class.

Create BLUFOR CDF infnatry squad:

_grp = [_pos, WEST, (configFile >> "CfgGroups" >> "West" >> "CDF" >> "Infantry" >> "CDF_InfSquad")] call BIS_fnc_spawnGroup;

Create OPFOR Russian infantry squad:

_grp = [_pos, EAST, (configFile >> "CfgGroups" >> "East" >> "RU" >> "Infantry" >> "RU_InfSquad")] call BIS_fnc_spawnGroup;

All the classes for BIS_fnc_spawnGroup use.

Faction - USMC

_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;

Faction - US Army

_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;

Faction - Takistani Army

_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;

Faction - CDF (Chernarus Defence Forces)

_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;

Faction - RU (Russia)

_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;

Faction - Insurgents

_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;

Faction - Independent / Resistance / Guerilla (Chernarus)

_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;

Faction - Independent / Resistance / Guerilla (Takistan)

_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;

Faction - UN (United Nations, weasels)

_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;

Faction - CZ (Army of the Czech Republic)

_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;
arma2/scripting/bis_fnc_spawngroup.txt · Last modified: 2016-11-02 16:49 by snakeman