17.06.2018, 16:28
I dont like the health cause it could be on fire and health will be displayed between 0-250
i use for mine
i use for mine
PHP код:
GetVehicleHP(vehicleid)
{
new hp_result, Float:hp;
GetVehicleHealth(vehicleid, hp);
hp_result = floatround((floatsub(hp, 250))/7.5);
if(hp_result > 0) return hp_result;
return 0;
}