Quote:
Originally Posted by DaRk_RaiN
Well there is a parameter that controls the respawn delay.
In case you use CreateVehicle
pawn Код:
// Respawn time of 60 seconds CreateVehicle(520, 2109.1763, 1503.0453, 32.2887, 82.2873, 0, 1, 60);//the last param
In case you use AddStaticVehicleEx
pawn Код:
// Respawn time of 15 seconds AddStaticVehicleEx ( 520, 2109.1763, 1503.0453, 32.2887, 82.2873, 0, 1, 15 );
Note:If you used AddStaticVehicle replace it with AddStaticVehicleEx, and add the respawn delay.
|
I'll try
Quote:
Originally Posted by DaRk_RaiN
Well there is a parameter that controls the respawn delay.
In case you use CreateVehicle
pawn Код:
// Respawn time of 60 seconds CreateVehicle(520, 2109.1763, 1503.0453, 32.2887, 82.2873, 0, 1, 60);//the last param
In case you use AddStaticVehicleEx
pawn Код:
// Respawn time of 15 seconds AddStaticVehicleEx ( 520, 2109.1763, 1503.0453, 32.2887, 82.2873, 0, 1, 15 );
Note:If you used AddStaticVehicle replace it with AddStaticVehicleEx, and add the respawn delay.
|
Did not work. Remember I want it to respawn if someone push it out of its place not when you exit it necause I already have that.