09.05.2015, 17:55
Delete both and use this
pawn Код:
IsNumeric(const string[])
{
for (new i = 0; i < strlen(string); i++)
if (string[i] > '9' || string[i] < '0') return 0;
return 1;
}