drag sys problem
#2

Remove this:
pawn Код:
strtok(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }

    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}
Reply


Messages In This Thread
drag sys problem - by gahal156 - 12.02.2011, 10:51
Re: drag sys problem - by Unknown123 - 12.02.2011, 10:55
Re: drag sys problem - by Mean - 12.02.2011, 10:56
Re: drag sys problem - by gahal156 - 12.02.2011, 10:59
Re: drag sys problem - by Mean - 12.02.2011, 11:01
Re: drag sys problem - by gahal156 - 12.02.2011, 12:04
Re: drag sys problem - by Mean - 12.02.2011, 21:37

Forum Jump:


Users browsing this thread: 1 Guest(s)