10.11.2012, 10:44
Код:
stock isNumeric(const string[])
{
for (new i = 0, j = strlen(string); i < j; i++)
if (string[i] > '9' || string[i] < '0')
return 0;
return 1;
}
Код:
C:\Users\Mustafa\Desktop\Server Mustafa's [SA-MP]\Server Mustafa's [SA-MP]\gamemodes\SF.pwn(911) : error 021: symbol already defined: "isNumeric" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.

