07.06.2009, 04:58
Do you want it to set:
OR
Add 25 armour to the current armour:
pawn Код:
SetPlayerArmour(playerid,25.0)
Add 25 armour to the current armour:
pawn Код:
if(GetPlayerArmour(playerid) > 75)
{
SetPlayerArmour(playerid,100)
}
else
{
SetPlayerArmour(GetPlayerArmour(playerid)+25)
}

