22.07.2012, 16:23
Add this somewhere in your script to get rid of the IsNumeric error:
And for the NOPCheck errors you gotta define this function since it's not a native function.
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;
}