Bank system error
#2

The errors are coming because you have no "IsNumeric" stock in your script.
Add this anywhere in your script:
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;
}
Good luck!
Reply


Messages In This Thread
Bank system error - by DarkLored - 19.10.2013, 21:41
Re: Bank system error - by JimmyCh - 19.10.2013, 21:58
Re: Bank system error - by DarkLored - 19.10.2013, 22:19
Re: Bank system error - by DanishHaq - 19.10.2013, 22:20
Re: Bank system error - by DarkLored - 19.10.2013, 22:25

Forum Jump:


Users browsing this thread: 1 Guest(s)