26.08.2012, 18:31
Seems like you are missing the IsNumeric stock in your gamemode:
And also seems you didn't make a new string, give us some code around the error lines.
E:// The previous poster was right, IsNumeric starts with a capital I.
pawn Код:
IsNumeric(const string[])
{
for (new i = 0, j = strlen(string); i < j; i++)
{
if (string[i] > '9' || string[i] < '0') return 0;
}
return 1;
}
E:// The previous poster was right, IsNumeric starts with a capital I.