svarun 16 Posted August 24, 2016 *ADMIN PLESE DELETE* Share this post Link to post Share on other sites
Beerkan 71 Posted August 24, 2016 If you want to respawn in a vehicle, you could try this in the init of the unit in the editorthis addMPEventHandler ['MPRespawn', {_this assignAsCargo myveh; _this moveInCargo myveh}]; or globally for ALL players in the init.sqf {if (_x IsKindof 'Man') then { [_x] addMPEventHandler ['MPRespawn', {_this assignAsCargo myveh; _this moveInCargo myveh}]; }; } foreach playableUnits; where myveh is the assigned name of the vehicle in the editor or your vehicle spawn script. Share this post Link to post Share on other sites