14.10.2010, 12:25
Hello everyone,how do i destroy a vehicle and respawn it after arriving a checkpoint for example?PLS HELP!
//global
new myCar;
//gamemodeinit or wherever you spawn the vehicle the first time
myCar = AddStaticVehicle(...);
//where you want to destroy
DestroyVehicle(myCar);
//onplayerentercheckpoint
myCar = CreateVehicle(...);