TomDark 0 Posted June 20, 2010 Hello , I would like to make a coop MP mission . I would like to know it is possible to respawn in an Uh60 or Plane ? If you will be killed, you respawning after 60 sec or more in the Plane that is flying in height of 3000 km. After the respawn you can jump out of the Heli with the BIS Helo jump. OK the helojump he easier of the two :) thanks for reading mfg Tom Share this post Link to post Share on other sites
CarlGustaffa 4 Posted June 20, 2010 A height of 3000 km? This is a war simulator, not Star Wars :p Share this post Link to post Share on other sites
Bon 12 Posted June 20, 2010 All you need to do is to use the moveInCargo command after a player respawns. One possibility would be a "killed"-eventhandler, that triggers when the unit dies, waits until the unit respawns, and moves the unit into cargo space of the chopper immediately. Could look like this: player addEventHandler ["Killed",{ player spawn { WaitUntil{alive _this}; _this moveInCargo <name heli>; }; }]; Share this post Link to post Share on other sites
TomDark 0 Posted June 20, 2010 sorry i mean 3000 m or 3 km / a 24h Helo Jump :butbut: @CarlGustaffa Thanks for the help Bon :ok: Share this post Link to post Share on other sites