17.07.2018, 09:46
Quote:
- see from open eyes not all textdraws are global.
- i have tested it and it doesnot drop fps. - no repeated codes - no untidy codes found you are the one who is a jelous peep nigga. |
also you should calculate the vehicle health
when the vehicle will be on fire the health will show between 0-250 and i usually prefer when the max health is 100 not 1000.
PHP Code:
GetVehicleHP(vehicleid)
{
new veh_hp_result, Float:veh_hp;
GetVehicleHealth(vehicleid, veh_hp);
veh_hp_result = floatround((floatsub(veh_hp, 250))/7.5);
if(veh_hp_result > 0) return veh_hp_result;
return 0;
}