[Ajuda] Comando inválido
#1

Код:
	if(strcmp(cmd,"/Previsao",true)==0)
	{
	    if( pInfo[ playerid ][ Prof ] == METEOROLOGISTA || aInfo[ playerid ][ Admin ] == 1 )
		{
		    new string[256];
		    new i;
		    new randMSG = random(sizeof(RandomPrevisao));
		    format(string,sizeof(string),"%s disse %s ",PlayerName( i ),RandomPrevisao[randMSG]);
		    SendClientMessageToAll( -1, string );		}
		else
		{
		    SendClientMessage(playerid, COLOR_ERRO,"| ERRO | Você não tem permissão!");
			return 1;
		}
	}
Manolos o problema é o seguinte, o cmd funfa de boa só que em baixo Aparece Comando inválido, o que tem de errado?
Reply
#2

PHP код:
if(strcmp(cmd,"/Previsao",true)==0)
{
    
    if( 
pInfoplayerid ][ Prof ] == METEOROLOGISTA || aInfoplayerid ][ Admin ] == )
    {
        
        new 
string[256];
        new 
i;
        new 
randMSG random(sizeof(RandomPrevisao));
        
format(string,sizeof(string),"%s disse %s ",PlayerName),RandomPrevisao[randMSG]);
        
SendClientMessageToAll( -1string );
        return 
1;// <<<<<<<
    
}
    else
    {
        
        
SendClientMessage(playeridCOLOR_ERRO,"| ERRO | Vocк nгo tem permissгo!");
        return 
1;//<<<<<<
    
}

Reply
#3

Vocк usa o else apуs o fechamento de brackets do if.

Veja:
Код:
	if(strcmp(cmd,"/Previsao",true)==0)
	{
	    if( pInfo[ playerid ][ Prof ] == METEOROLOGISTA || aInfo[ playerid ][ Admin ] == 1 )
		{
		    new string[256];
		    new i;
		    new randMSG = random(sizeof(RandomPrevisao));
		    format(string,sizeof(string),"%s disse %s ",PlayerName( i ),RandomPrevisao[randMSG]);
		    SendClientMessageToAll( -1, string );		}
		else // ERRADO
		{
		    SendClientMessage(playerid, COLOR_ERRO,"| ERRO | Vocк nгo tem permissгo!");
			return 1;
		}
	}
Код:
	if(strcmp(cmd,"/Previsao",true)==0)
	{
	    if( pInfo[ playerid ][ Prof ] == METEOROLOGISTA || aInfo[ playerid ][ Admin ] == 1 )
		{
		    new string[256];
		    new i;
		    new randMSG = random(sizeof(RandomPrevisao));
		    format(string,sizeof(string),"%s disse %s ",PlayerName( i ),RandomPrevisao[randMSG]);
		    SendClientMessageToAll( -1, string )
		}
            else{ //CERTO
		    SendClientMessage(playerid, COLOR_ERRO,"| ERRO | Vocк nгo tem permissгo!");
                      }
			return 1;
		}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)