fixed soldier units spawning long after spotted

if unit is forced to spawn no need to increase random spawn limit, Also
since there was no way to decrease the spawn for soldiers they would
randomly spawn forever.
get random postion around player to spawn soldier if extra data is not
sent.
set soldiers to spawn at ground level.
This commit is contained in:
vbawol 2017-03-22 16:51:51 -05:00
parent 01effa7119
commit e6a4e39bb9

View File

@ -123,7 +123,6 @@ switch _unitClass do {
};
case "I_UAV_01_F": {
for "_i" from 0 to (_unitCount-1) do {
_targetPos = getPosATL _trgt;
_targetPos = [_targetPos, 600, 1200, 5, 0, 400, 0] call BIS_fnc_findSafePos;
_targetPos set[2, 600];
_unit = createVehicle["I_UAV_01_F", _targetPos, [], 0, "FLY"];
@ -151,7 +150,6 @@ switch _unitClass do {
};
};
case "I_Soldier_EPOCH": {
_extraData params [["_pos",getpos player],["_copter",objnull]];
_grp = createGroup RESISTANCE;
_grp setBehaviour "COMBAT";
_grp setCombatMode "RED";