PMC websites shut down November 13th 2025 unless web hosting fees are paid. See up to date status from PMC Website Hosting and Domain Registration Fee Status forum topic. 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 November 13th 2025 when web hosting fees are due.

User Tools

Site Tools


arma3:scripting:set-players-group-to-position

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]);
arma3/scripting/set-players-group-to-position.txt · Last modified: 2024/07/25 07:10 by snakeman