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
Descrição
Destroi um veículo. Ele desaparecerá instantaneamente.
Nome | Descrição |
---|---|
vehicleid | O ID do veículo a ser destruído. |
Retornos
true - A função foi executada com sucesso.
false - A função falhou ao ser executada. O veículo não existe.
Exemplos
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/destroyveh", true) == 0)
{
if (IsPlayerInAnyVehicle(playerid))
{
new vehicleid = GetPlayerVehicleID(playerid);
DestroyVehicle(vehicleid);
}
return 1;
}
return 0;
}
Funções Relacionadas
- CreateVehicle: Cria um veículo.
- RemovePlayerFromVehicle: Expulsa um jogador de seu veículo.
- SetVehicleToRespawn: Faz um veículo reaparecer.