24.04.2012, 18:07
You are assigning an integer to a float.
You have two options to fix this.
Replacing
with
Or replacing
with
EDIT: Or what the guy above me said
You have two options to fix this.
Replacing
pawn Код:
new VehicleHealth;
pawn Код:
new Float:VehicleHealth;
pawn Код:
SetVehicleHealth(vehicleid,VehicleHealth);
pawn Код:
SetVehicleHealth(vehicleid,float(VehicleHealth));