Help with errors fast please
#3

Seems like you are missing the IsNumeric stock in your gamemode:
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 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.
Reply


Messages In This Thread
Help with errors fast please - by VIP475 - 26.08.2012, 18:29
Re: Help with errors fast please - by TaLhA XIV - 26.08.2012, 18:31
Re: Help with errors fast please - by Dan. - 26.08.2012, 18:31
Re: Help with errors fast please - by VIP475 - 26.08.2012, 18:48
Re: Help with errors fast please - by Dan. - 26.08.2012, 18:53
Re: Help with errors fast please - by TaLhA XIV - 26.08.2012, 18:59
Re: Help with errors fast please - by Roko_foko - 26.08.2012, 19:04
Re: Help with errors fast please - by VIP475 - 26.08.2012, 19:07
Re: Help with errors fast please - by Dan. - 26.08.2012, 19:10
Re: Help with errors fast please - by VIP475 - 26.08.2012, 19:36

Forum Jump:


Users browsing this thread: 1 Guest(s)