22.07.2012, 17:41
Add this at the top of the script
And at the bottom of the script
pawn Код:
#pragma unused ret_memcpy
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;
}