[Ajuda] GarHouse
#4

Dк um CTRL + F e coloque isto na linha strtok(const string[], &index), e apague a funзгo toda que й esta

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
[Ajuda] GarHouse - by ceesar90 - 05.04.2011, 19:47
Re: [Ajuda] GarHouse - by []Fabricio[] - 05.04.2011, 20:01
Re: [Ajuda] GarHouse - by Diogo_Bras - 05.04.2011, 20:05
Re: [Ajuda] GarHouse - by Macintosh - 05.04.2011, 20:54
Re: [Ajuda] GarHouse - by ceesar90 - 05.04.2011, 21:25

Forum Jump:


Users browsing this thread: 1 Guest(s)