RepairVehicle PT
From SA-MP Wiki
Description:
Repara o dano visual (amassados, arranhões, pneus) do veículo.
(vehicleid)
vehicleid | ID do veículo a ser reparado. |
Retorno | Esta função não retorna um valor especifico. |
public OnPlayerCommandText(playerid, cmdtext[]) { if (!strcmp("/reparar", cmdtext)) { if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, 0xFFFFFFFF, "Você não esta em um Veículo!"); RepairVehicle(GetPlayerVehicleID(playerid)); SendClientMessage(playerid, 0xFFFFFFFF, "Seu veículo foi reparado com sucesso!"); return 1; } }
Funções Relacionadas
As seguintes funções podem ser úteis, pois estão de alguma forma, relacionadas a esta função.
- SetVehicleHealth: Set the health of a vehicle.
- GetVehicleHealth: Check the health of a vehicle.