#```sqf

1 messages · Page 1 of 1 (latest)

fathom helm
#

I can not get this to work btw

#

I gave a vehicle a name, made it public and ran this script on the server.
It was finding the right vehicle, but it won't eject corpses

molten nova
# fathom helm I can not get this to work btw

Try doing this and see if it works:

private _vehicle = vehicle player;
{
    if(!alive _x) then {
        unassignVehicle _x;
        _x action ["Eject", _vehicle];
        moveOut _x;
    };
}foreach crew _vehicle;
fathom helm
rugged cypress
#

you shouldn't even have to use action, moveOut should be fine.

blissful pike
molten nova