ArmA 3 Set Players Group To Position

ArmA 3 Forum, ArmA 3, ArmA 3 Config, ArmA 3 Missions, ArmA 3 3D Modeling, ArmA 3 Scripting, ArmA 3 Terrain, ArmA 3 Texturing, ArmA 3 Tools

2022-06-19T03:11:00Z

Generate random location first, then use scripts/PMC/PMC_FormationPosition.sqf script to set player AND his group there all nicely in formation (no ugly stacking).

PMCTODO This script is located in pmc_livonia_ninjas/m001.pmc_rattler/PMC/ dir for now, dunno where it is later if you forgot to update this page ;)

PMC/PMC_FormationPosition.sqf:

//https://community.bistudio.com/wiki/formationPosition
 
// Reposition entire group to a new position (ground level)
private _group = group player;
private _leader = leader _group;
 
// set the leader to the spawn position
_leader setPosATL (_this select 0);
 
// Reposition all units of the group except the leader
{
	private _formationPos = formationPosition _x;
	_formationPos set [2, 0];
	_x setPosATL _formationPos;
} forEach (units _group - [_leader]);