16.05.2012, 21:44
Sets health to full, but body panels stay the same. Using it this way:
Like I said car stops smoking, but still looks like hell.
Код:
dcmd_vr(const playerid, const params[])
{
if(pstate[playerid] != PLAYER_STATE_DRIVER && pstate[playerid] != PLAYER_STATE_PASSENGER) return SendClientMessage(playerid, COLOR_ERROR,"Error: You must be in a vehicle to repair.");
if(IsComplexVehicle(pvehicleid[playerid]))
{
SendClientMessage(playerid, COLOR_RED, "VEHICLE REPAIR Error: You do not have a left-handed screwdriver.");
return 1;
}
else if(pvehicleid[playerid] != INVALID_VEHICLE_ID)
{
RepairVehicle(pvehicleid[playerid]);
}
return 1;
#pragma unused params
}

