23.02.2014, 12:56
Code below seems to compile just fine for me.
pawn Код:
// start of function
{
new Float:health;
new veh = GetPlayerVehicleID(playerid);
GetVehicleHealth(veh, health);
if(health > 900)
{
teise[playerid] = 1;
return 1;
}
return 1;
}