Ladmin:L
#9

Quote:
Originally Posted by grand.Theft.Otto
Посмотреть сообщение
You should have this stock in the script:

pawn Код:
stock strtok(const string[], &idx)
{
    new length = strlen(string);
    while ((idx < length) && (string[idx] <= ' '))
    {
        idx++;
    }
    new offset = idx;
    new result[128];
    while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
    {
        result[idx - offset] = string[idx];
        idx++;
    }
    result[idx - offset] = EOS;
    return result;
}
Look for it, if it is not there or commented out, uncomment it or add the above one to the bottom of LAdmin.

I have no idea for the error "array must be indexed: (variable tmp3)"
PMG thanks dude!worked 100%! Rep for u+
Reply


Messages In This Thread
Ladmin:L - by Admigo - 10.08.2011, 20:11
Re: Ladmin:L - by Norck - 10.08.2011, 20:14
Re: Ladmin:L - by [HiC]TheKiller - 10.08.2011, 20:15
Re: Ladmin:L - by Admigo - 10.08.2011, 20:37
Re: Ladmin:L - by Admigo - 10.08.2011, 20:49
Re: Ladmin:L - by grand.Theft.Otto - 10.08.2011, 20:54
Re: Ladmin:L - by Admigo - 10.08.2011, 20:55
Re: Ladmin:L - by grand.Theft.Otto - 10.08.2011, 21:01
Re: Ladmin:L - by Admigo - 10.08.2011, 21:10

Forum Jump:


Users browsing this thread: 2 Guest(s)