04.11.2016, 00:11
Tem como impedir que o carro exploda quando fica capotado? (tipo ele fica la virado mais sem explodir)
public OnVehicleDamageStatusUpdate(vehicleid, playerid)
{
new Float:health;
GetVehicleHealth(veh, health);
if(IsPlayerInVehicle(playerid, vehicleid))
{
if(health < 250)
{
SetVehicleHealth(vehicleid, 300);
}
}
return 1;
}