[AJUDA] Erro cmd
#2

troque
pawn Код:
if (!strcmp(cmd, "/meuclima", true))
por
pawn Код:
if (!strcmp(cmdtext, "/meuclima", true))
E add 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
[AJUDA] Erro cmd - by Oakley_TwOPaCk - 14.02.2012, 15:15
Re: [AJUDA] Erro cmd - by zbt - 14.02.2012, 15:24
Re: [AJUDA] Erro cmd - by rjjj - 14.02.2012, 15:30
Re: [AJUDA] Erro cmd - by Oakley_TwOPaCk - 14.02.2012, 15:59

Forum Jump:


Users browsing this thread: 2 Guest(s)