[AJUDA] Comando nгo reconhecido
#1

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");
                }
        }
    }
Reply
#2

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;
    }
Reply
#3

Vlw... deu certo... te amo Josma aushuahsuahsuahs
Reply
#4

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.
Reply
#5

Cуdigos mal identados dб em erro...
Reply
#6

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....
Reply
#7

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

kkkkkk... pois vou arrumar os code aqui!
Reply
#9

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;
    } 
Reply
#10

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...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)