well, I thoght when the pilots auto-Eject themselves, is because the Chopper/Plane Suddenly Shut-off, if you try to start them again you cant, thats because it got a Engine Dammage or something... but what you are looking for is to wach your chopper fall whit the pilot inside... no idea :-\
ave you tryed whit MoveinDriver command?
something like these:
_chopper = this select 0
_Gunner = gunner _chopper
_driver = driver _chopper
#begin
? ! (_gunner in _chopper) : goto "Movegunner"
? ! (_driver in _chopper) : goto "Movedriver"
? ! (alive _gunner) and ! (alive _driver) : goto "exit"
? ! (alive _chopper) : goto "exit"
~0.025
goto "begin"
#Movegunner
_gunner moveingunner _chopper
goto "begin"
#movedriver
_driver moveindriver _chopper
goto "begin"
#exit
exit
What you think?
im not experienced on scripts.. but i think this will work.. if it is possible to "moveinriver"/"moveingunner" when the Helo is deactivated...
Salute!