Skip to main content

SetVehicleToRespawn

คำอธิบาย

Sets a vehicle back to the position at where it was created.

NameDescription
vehicleidThe ID of the vehicle to respawn

ส่งคืน

1: The function executed successfully.

0: The function failed to execute. The vehicle does not exist

ตัวอย่าง

// Respawns the first vehicle.
SetVehicleToRespawn(1);
for(new i = GetVehiclePoolSize(); i > 0; i--)
{
SetVehicleToRespawn(i);
}

ฟังก์ชั่นที่เกี่ยวข้องกัน

  • CreateVehicle: Create a vehicle.
  • DestroyVehicle: Destroy a vehicle.