[Pedido] Alguem me ajuda a converter isso pra por direto no meu gm
#6

Quote:
Originally Posted by Vinicius_TroLL
Посмотреть сообщение
Onde eu coloco a
Код:
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;
}
Acho que no final do gamemode .
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)