[DUVIDA]Erro de comando
#10

Quote:
Originally Posted by Douglas_FusioN
Посмотреть сообщение
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])

{
        cmd=strtok(cmdtext,idx);
    new cmd[256];

    if(strcmp(cmd, "/creditos", true) == 0) {
    SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}Creditos do GM ^^");
    SendClientMessage(playerid, COLOR_AQUA,"{D15FEE}Gamemode {FF0000}FreeFlyght V1.0.");
    SendClientMessage(playerid, COLOR_VERMELHO,"{FFFF00}Coder: Gabriel.");
    SendClientMessage(playerid, COLOR_VERMELHO,"{00FFFF}Mapper:Pigon.");
    return 1;
     }

    if(strcmp(cmd, "/dm1", true) == 0) {
    SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}Em Breve !  ^^");
    return 1;
      }

    if(strcmp(cmd, "/dogfight", true) == 0) {
    SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}Em Breve ArenaDogFight !  ^^");
    return 1;
      }

    if(strcmp(cmd, "/comandos", true) == 0) {
     SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}Arenas DM : /dm1 /dm2 /dm3 /dm4 /dm5");
     SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}/creditos e veja quem criou o servidor ^^");
     SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}/dogfight e va para a arena de dogfight  ^^");
     SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}/relato e fale com o admin   ^^");
     SendClientMessage(playerid, COLOR_AQUA,"{FFFFFF}Em Breve mais comandos !  ^^");
Ou Veja se sua Public CommandText esta retornando 0.

@Edit

E SE NГO TIVER:
Coloque no fim 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;
}
Substitua o codigo que vocк colocou ali em cima por este. (o 1 ali '-')
Se nгo tiver no seu GM coloque no final o segundo codigo.
Reply


Messages In This Thread
[DUVIDA]Erro de comando - by gcoder - 25.03.2012, 18:40
Re: [DUVIDA]Erro de comando - by histire - 25.03.2012, 18:43
Re: [DUVIDA]Erro de comando - by gcoder - 25.03.2012, 18:53
Re: [DUVIDA]Erro de comando - by DouglasRodrigues - 25.03.2012, 18:55
Re: [DUVIDA]Erro de comando - by BreakDriFT - 25.03.2012, 18:56
Re: [DUVIDA]Erro de comando - by histire - 25.03.2012, 19:02
Re: [DUVIDA]Erro de comando - by gcoder - 25.03.2012, 19:05
Re: [DUVIDA]Erro de comando - by DouglasRodrigues - 25.03.2012, 19:07
Re: [DUVIDA]Erro de comando - by gcoder - 25.03.2012, 19:09
Re: [DUVIDA]Erro de comando - by DouglasRodrigues - 25.03.2012, 19:15
Re: [DUVIDA]Erro de comando - by histire - 25.03.2012, 19:18
Re: [DUVIDA]Erro de comando - by gcoder - 25.03.2012, 19:23
Re: [DUVIDA]Erro de comando - by DouglasRodrigues - 25.03.2012, 19:23
Re: [DUVIDA]Erro de comando - by DouglasRodrigues - 25.03.2012, 19:26
Re: [DUVIDA]Erro de comando - by steeldark - 25.03.2012, 19:33
Re: [DUVIDA]Erro de comando - by gcoder - 25.03.2012, 19:38

Forum Jump:


Users browsing this thread: 1 Guest(s)