Hi guys,
im creating a new mp missions and i duplicated an eject script from another mp mission, all work fine apart the part where the choppers have to be deleteds, it work well in the original mission then i dont stand why it dont with mine...
--------------------------------------------------
;?!(local Server):exit
;initialisation
_units = (units grp3) + (units grp4)
_nbUnits = count _units
#eject
_soldier = (_units select _nbUnits)
unassignVehicle _soldier
_soldier action ["eject", vehicle _soldier]
_nbUnits = _nbUnits-1
~0.3
if (_nbUnits mod 2==0) then {goto "suite"}
~0.3
#suite
?_nbUnits>=0:goto "eject"
~60
?!(local driver ch2):deleteVehicle driver ch2
?!(local gunner ch2):deleteVehicle gunner ch2
?!(local ch2):deleteVehicle ch2
exit
---------------------------------------------------
Only the end of the script dont work
What's wrong?? (i try it in editor and i realize only now that maybe it work well only in mp?)