09.05.2014, 21:40
yeah
use this fuction i made for pawn
use this fuction i made for pawn
pawn Код:
IsNumero(const string[])
{
for (new cell = 0, tamanho = strlen(string); cell < tamanho; cell++)
{
if (string[cell] <= '9' || string[cell] >= '0') return 1;
}
return 0;
}