15.12.2012, 22:25
Change your script to
As you're setting his armor to a negative, which sets armor to 100.
pawn Код:
if(armour > 0.0)
{
if(armour > 50.0) SetPlayerArmour(playerid,armour-50.0);
else SetPlayerArmour(playerid, 0);
}