SetVehicleHealth
From SA-MP Wiki
Sets a vehicle's health to a specific value
(vehicleid, Float:health)
| vehicleid | ID of the vehicle to set the health of. |
| Float:health | Health given as a float value. |
| Returns | This function doesn't return a specific value |
if(strcmp("/fixengine", cmdtext, true) == 0) { new vehicleid = GetPlayerVehicleID(playerid); SetVehicleHealth(vehicleid, 1000.0); SendClientMessage(playerid, COLOUR_WHITE, "The vehicles engine has been fully repaired."); return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- GetVehicleHealth: Check the health of a vehicle.
- RepairVehicle: Fully repair a vehicle.
- SetPlayerHealth: Set a player's health.
Related Callbacks
The following callbacks might be useful, as they're related to this function in one way or another.
- OnVehicleDeath: Called when a vehicle is destroyed.
