blob: b9ae10e223dbe78731fa4fe5505abb2c68f4574b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
private ["_turrets", "_path", "_vehicle", "_crew", "_team", "_unit"];
_turrets = _this select 0;
_path = _this select 1;
_vehicle = _this select 2;
_crew = _this select 3;
_team = _this select 4;
private ["_i"];
_i = 0;
while {_i < (count _turrets)} do {
private ["_turretIndex", "_thisTurret"];
_turretIndex = _turrets select _i;
_thisTurret = _path + [_turretIndex];
if (isNull (_vehicle turretUnit _thisTurret)) then {
_unit = [_crew,_team,getPos _vehicle,side _team] Call CreateMan;
_unit moveInTurret [_vehicle, _thisTurret];
};
//Spawn units into subturrets.
[_turrets select (_i + 1), _thisTurret, _vehicle, _crew, _team] call SpawnTurrets;
_i = _i + 2;
};
|