I have some errors and someone can fix them -In ;D-
#6

Add this somewhere in your script to get rid of the IsNumeric error:

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;
}
And for the NOPCheck errors you gotta define this function since it's not a native function.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)