note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
DestroyVehicle
Description
Destroy a vehicle. It will disappear instantly.
Name | Description |
---|---|
vehicleid | The ID of the vehicle to destroy. |
Returns
true - The function executed successfully.
false - The function failed to execute. The vehicle does not exist.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/destroyveh", true) == 0)
{
if (IsPlayerInAnyVehicle(playerid))
{
new vehicleid = GetPlayerVehicleID(playerid);
DestroyVehicle(vehicleid);
}
return 1;
}
return 0;
}
Related Functions
- CreateVehicle: Create a vehicle.
- RemovePlayerFromVehicle: Throw a player out of their vehicle.
- SetVehicleToRespawn: Respawn a vehicle.