Цитата PIONEER (
)
По разному можно, но сторона уже не нужна, постараюсь примерчик сделать на днях
Смотри что нашёл, может из этого что можно слепить?
// Random starting location selector script
// Usage: _nil = [this]execVM "scripts\randomStartPos.sqf";
// Define caller
_unit = _this select 0;
// Markers for spawning
_pos = ["w1", "w2", "w3", "w4"];
// Randomly select the marker to used
_startPos = _pos call BIS_fnc_selectRandom;
// Move the unit or object to the marker
_unit setPos (getMarkerPos _startPos);
// Set the direction of the unit or object to be the same as the marker
_unit setDir (markerDir _startPos);