23.06.2011, 16:10
If I type 100 in the input box, it sets it to 100. When it should set it to 99.
pawn Код:
if(strlen(inputtext) > 98)// If the Input = Greater than 98, it Auto sets it to 99.
{
DuelArmor = 99;
}
else
{
new Float:armor = strval(inputtext);
DuelArmor = armor;
}