Jump to content
Sign in to follow this  
ChrisDRob

How to get a unit to eject from plane?

Recommended Posts

I've given 3 units an initialization to moveincargo of a c-130J, how do I make it so that 1 of them units eject from the plane in 30 seconds, another in 45 seconds, and the other in 50 seconds.

Share this post


Link to post
Share on other sites

[]spawn{
   sleep 15;
   {
       sleep 15;
       this action ["eject", c130Name];
   }forEach assignedCargo c130Name;
};

simple stuff

edit: whoops, didn't read your intervals properly...you probably want this

[]spawn{
   sleep 30;
   marine1 action ["eject", c130Name];
   sleep 15;
   marine2 action ["eject", c130Name];
   sleep 5;
   marine3 action ["eject", c130Name];
};

Edited by GDICommand

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×