Jump to content
Sign in to follow this  
svarun

*ADMIN PLESE DELETE*

Recommended Posts

If you want to respawn in a vehicle, you could try this in the init of the unit in the editor
this 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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×