Ich habe ein Problem mit der Anzeige meines Fahrzeugzustand's.
Wenn Ich ein Unfall mache, verschwindet manchmal die Anzeige, woran kann es liegen?
Die Berechnung sollte normalerweiße korrekt sein, da ein Fahrzeug schon mit 250 anfängt zu brennen.
new Float:vhp, string[128];
GetVehicleHealth(vd, vhp);
vhp = vhp-250; vhp = vhp/10; VehicleHP = vhp/75; vhp = vhp*100;
new vvhp = floatround(vhp, floatround_floor);
if(vvhp < 0){ = 0;}
if(vvhp >= 100) format(string, sizeof(string), "~w~Zustand: ~g~%d", vvhp);
else if(vvhp <= 50 && VHP > 30) format(string, sizeof(string), "~w~Zustand: ~y~%d", vvhp);
else if(vvhp <= 29) format(string, sizeof(), "~w~Zustand: ~r~%d", vvhp);