[Ajuda] Erros --'
#2

coloca isso no final do gm

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
Erros --' - by Serjnrg - 22.05.2013, 18:40
Re: Erros --' - by Caio_Freeze - 22.05.2013, 18:55
Re: Erros --' - by Serjnrg - 22.05.2013, 19:07

Forum Jump:


Users browsing this thread: 1 Guest(s)