19.03.2015, 15:58
Always that first, why is it not changing?
Код:
new vehicleid = GetPlayerVehicleID(playerid); new Float:vhealth[MAX_VEHICLES]; GetVehicleHealth(vehicleid, vhealth[vehicleid]); if(vhealth[vehicleid] >= 900.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0x00FF00FF); }else if(vhealth[vehicleid] <= 800.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0x84FF00FF); }else if(vhealth[vehicleid] <= 700.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0xAEFF00FF); }else if(vhealth[vehicleid] <= 600.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0xD5FF00FF); }else if(vhealth[vehicleid] <= 500.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0xFFFF00FF); }else if(vhealth[vehicleid] <= 400.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0xFFC400FF); }else if(vhealth[vehicleid] <= 300.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0xFF8400FF); }else if(vhealth[vehicleid] <= 200.0) { PlayerTextDrawColor(playerid, TD_VPARAMS[1][playerid], 0xFF3C00FF); }