RepairVehicle

From SA-MP Wiki

Jump to: navigation, search


RepairVehicle was added in SA-MP 0.3a This function was added in SA-MP 0.3a and will not work in earlier versions!


Description:

Fully repairs a vehicle, including visual damage (bumps, dents, scratches, popped tires etc.).


Parameters:
(vehicleid)
vehicleidThe ID of the vehicle to repair.


Return Values:

  • 1: The function executed successfully.
  • 0: The function failed to execute. This means the vehicle specified does not exist.


Example Usage:

public OnPlayerCommandText(playerid, cmdtext[])
{
    if (!strcmp("/repair", cmdtext))
    {
        if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, 0xFFFFFFFF, "You are not in a vehicle!");
 
        RepairVehicle(GetPlayerVehicleID(playerid));
 
        SendClientMessage(playerid, 0xFFFFFFFF, "Your vehicle has been repaired!");
        return 1;
    }
    return 0;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

Personal tools
Navigation
Toolbox