SA-MP Forums Archive
[AJUDA] Comando nгo reconhecido - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Comando nгo reconhecido (/showthread.php?tid=252893)



[AJUDA] Comando nгo reconhecido - Lucas_ - 03.05.2011

Pow eu tenho um comando que quando eu digito aparece aquela menssagem que o comando nгo existe
eu nгo sei o que й.....
olhem o cmd:

pawn Код:
if(strcmp(cmd, "/senha", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAge] == 0)
            {
                filaa(playerid);
                SendClientMessage(playerid, COLOR_GREY, "Vocк entrou na fila de atendimento, Para sair digite /sairfila.");
                new string2[256];
                new pnamee[256];
                GetPlayerName(playerid, pnamee,256);
                format(string2, sizeof(string), "** %s Entrou na fila de atendimento.", pnamee);
                ABroadCast(COLOR_ALERTA,string2,1);
            }
            else
            {
                SendClientMessage(playerid, COLOR_GREY, "Vocк jб estб na fila de atendimento. Para sair digite: /sairfila");
                }
        }
    }



Re: [AJUDA] Comando nгo reconhecido - Josma_cmd - 03.05.2011

pawn Код:
if(strcmp(cmd, "/senha", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAge] == 0)
            {
                filaa(playerid);
                SendClientMessage(playerid, COLOR_GREY, "Vocк entrou na fila de atendimento, Para sair digite /sairfila.");
                new string2[256];
                new pnamee[256];
                GetPlayerName(playerid, pnamee,256);
                format(string2, sizeof(string), "** %s Entrou na fila de atendimento.", pnamee);
                ABroadCast(COLOR_ALERTA,string2,1);
            }
            else
            {
                SendClientMessage(playerid, COLOR_GREY, "Vocк jб estб na fila de atendimento. Para sair digite: /sairfila");
            }
        }
        return 1;
    }



Re: [AJUDA] Comando nгo reconhecido - Lucas_ - 03.05.2011

Vlw... deu certo... te amo Josma aushuahsuahsuahs


Re: [AJUDA] Comando nгo reconhecido - Shadoww5 - 03.05.2011

Isto serve para vocк aprender:

Note que ele colocou a ante-penultima chave no lugar certo e adicionou o "return 1;" ao final do comando.


Re: [AJUDA] Comando nгo reconhecido - The Knight - 03.05.2011

Cуdigos mal identados dб em erro...


Re: [AJUDA] Comando nгo reconhecido - JonathanFeitosa - 03.05.2011

pawn Код:
new string2[256];
new pnamee[256];
Interessante, Sera que o Nome dele Vai ter 256 Digitos й o Nъmero de Caractйristicas sгo 256 ? sendo que o Maximo й 128 ?

Depois Reclama de Leg....


Re: [AJUDA] Comando nгo reconhecido - Josma_cmd - 03.05.2011

Eu tambйm me amo Lucas_ kkkk.
Como The Knight disse, nгo sу returns mas mб identaзгo causam isso...


Re: [AJUDA] Comando nгo reconhecido - Lucas_ - 03.05.2011

kkkkkk... pois vou arrumar os code aqui!


Re: [AJUDA] Comando nгo reconhecido - Ricop522 - 03.05.2011

PHP код:
 if(strcmp(cmd"/senha"true) == 0)
    {
        if(
IsPlayerConnected(playerid))
        {
            if(
PlayerInfo[playerid][pAge] == 0)
            {
                
filaa(playerid);
                
SendClientMessage(playeridCOLOR_GREY"Vocк entrou na fila de atendimento, Para sair digite /sairfila.");
                new 
string2[70];
                new 
pnamee[MAX_PLAYER_NAME];
                
GetPlayerName(playeridpnamee,256);
                
format(string2sizeof(string), "** %s entrou na fila de atendimento."pnamee);
                
ABroadCast(COLOR_ALERTA,string2,1);
            }
            else
            {
                
SendClientMessage(playeridCOLOR_GREY"Vocк jб estб na fila de atendimento. Para sair digite: /sairfila");
            }
        }
        return 
1;
    } 



Re: [AJUDA] Comando nгo reconhecido - The Knight - 03.05.2011

Cуdigo correto:
pawn Код:
if( !strcmp( cmd, "/senha", true ) )
{
   if( PlayerInfo[ playerid ][ pAge ] == 0 )
   {
      filaa( playerid );
      SendClientMessage( playerid, COLOR_GREY, "Vocк entrou na fila de atendimento, Para sair digite /sairfila." );
      new sStr[ 58 ];
      new J[ MAX_PLAYER_NAME ];
      GetPlayerName( playerid, J, sizeof( J ) );
      format( sStr, sizeof( sStr ), "** %s entrou na fila de atendimento.", J );
      ABroadCast( COLOR_ALERTA, sStr, 1 );
   }
   else SendClientMessage( playerid, COLOR_GREY, "Vocк jб estб na fila de atendimento. Para sair digite: /sairfila" );
   return true;
}
pawn Код:
if( IsPlayerConnected( playerid ) )
Para quк isso? Se ele digita o comando й porque estб conectado...