[Ajuda] SERVER: Unknowm Command
#1

Galera, criei o comando abaixo porйm na hora que digito ele no servidor aparece a seguinte mensagem:
SERVER: Unknowm Command.

Cуdigo do comando:
pawn Код:
if( !strcmp( cmd, "/criarderby", true ))
   {
       if(pAdmin[playerid] == 5 || pAdmin[playerid] == 4)
       {
           if( EventoCriado == 1 )
           {
               SendClientMessage( playerid, Vermelho, "| ERRO | Jб tem um evento em andamento!" );
               return 1;
           }
           else
           {
               vEvento[ CreateVehicle( 556, 1127.2469,1359.3855,10.8203,183.2775, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1123.3887,1359.4010,10.8203,184.5308, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1119.4945,1358.9907,10.8203,187.3509, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1116.0231,1359.4000,10.8203,171.9974, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1113.3241,1359.0577,10.8203,178.6500, 0, 1, -1 ) ] = 1;
               ivEvento[ vEvento[ VeiculosEvento ]] = 1;
               SetPlayerPos(playerid,1169.2644,1354.8823,14.5703);
               EventoCriado = 1;
               SendClientMessage( playerid, AZUL_BEST, "| INFO | Evento criado com sucesso!" );
               SendClientMessageToAll( AZUL_BEST, "| BCV-Admin | O(A) %s %s criou o evento ( Derby-Monster ), use /irevento!", CargoAdmin(playerid), PlayerName(playerid) );
               GameTextForAll("~y~Evento ~g~Criado ~y~use ~b~/irevento", 6000, 1);
               T_AntBug = 1;
               SetTimer( "CongelarPlayers", 1000, false );
               VeiculosEvento++;
               return 1;
           }
        }
    }
Reply
#2

Quote:
Originally Posted by LeonardoMD
Посмотреть сообщение
Galera, criei o comando abaixo porйm na hora que digito ele no servidor aparece a seguinte mensagem:
SERVER: Unknowm Command.

Cуdigo do comando:
pawn Код:
if( !strcmp( cmd, "/criarderby", true ))
   {
       if(pAdmin[playerid] == 5 || pAdmin[playerid] == 4)
       {
           if( EventoCriado == 1 )
           {
               SendClientMessage( playerid, Vermelho, "| ERRO | Jб tem um evento em andamento!" );
               return 1;
           }
           else
           {
               vEvento[ CreateVehicle( 556, 1127.2469,1359.3855,10.8203,183.2775, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1123.3887,1359.4010,10.8203,184.5308, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1119.4945,1358.9907,10.8203,187.3509, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1116.0231,1359.4000,10.8203,171.9974, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1113.3241,1359.0577,10.8203,178.6500, 0, 1, -1 ) ] = 1;
               ivEvento[ vEvento[ VeiculosEvento ]] = 1;
               SetPlayerPos(playerid,1169.2644,1354.8823,14.5703);
               EventoCriado = 1;
               SendClientMessage( playerid, AZUL_BEST, "| INFO | Evento criado com sucesso!" );
               SendClientMessageToAll( AZUL_BEST, "| BCV-Admin | O(A) %s %s criou o evento ( Derby-Monster ), use /irevento!", CargoAdmin(playerid), PlayerName(playerid) );
               GameTextForAll("~y~Evento ~g~Criado ~y~use ~b~/irevento", 6000, 1);
               T_AntBug = 1;
               SetTimer( "CongelarPlayers", 1000, false );
               VeiculosEvento++;
               return 1;
           }
        }
    }
Nгo sei porque as chaves estгo saindo aqui fora do lugar, mas enfim, esse aн й o codigo.
Reply
#3

LeonardoMD, organizei o comando e o erro estava no return 1; no final do comando, estava na chave incorreta.


Код:
       if(!strcmp( cmd, "/criarderby", true)) {
	
       if (pAdmin[playerid] == 5 || pAdmin[playerid] == 4) {
       
	       if (EventoCriado == 1) {
               return SendClientMessage( playerid, Vermelho, "| ERRO | Jб tem um evento em andamento!" );
           } else {
               vEvento[ CreateVehicle( 556, 1127.2469,1359.3855,10.8203,183.2775, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1123.3887,1359.4010,10.8203,184.5308, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1119.4945,1358.9907,10.8203,187.3509, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1116.0231,1359.4000,10.8203,171.9974, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1113.3241,1359.0577,10.8203,178.6500, 0, 1, -1 ) ] = 1;
               ivEvento[ vEvento[ VeiculosEvento ]] = 1;
               SetPlayerPos(playerid,1169.2644,1354.8823,14.5703);
               EventoCriado = 1;
               SendClientMessage( playerid, AZUL_BEST, "| INFO | Evento criado com sucesso!" );
               SendClientMessageToAll( AZUL_BEST, "| BCV-Admin | O(A) %s %s criou o evento ( Derby-Monster ), use /irevento!", CargoAdmin(playerid), PlayerName(playerid) );
   	           GameTextForAll("~y~Evento ~g~Criado ~y~use ~b~/irevento", 6000, 1);
               T_AntBug = 1;
               SetTimer( "CongelarPlayers", 1000, false );
               VeiculosEvento++;
		   }
        }
        return 1;
    }
Reply
#4

Quote:
Originally Posted by wearLy
Посмотреть сообщение
LeonardoMD, organizei o comando e o erro estava no return 1; no final do comando, estava na chave incorreta.


Код:
       if(!strcmp( cmd, "/criarderby", true)) {
	
       if (pAdmin[playerid] == 5 || pAdmin[playerid] == 4) {
       
	       if (EventoCriado == 1) {
               return SendClientMessage( playerid, Vermelho, "| ERRO | Jб tem um evento em andamento!" );
           } else {
               vEvento[ CreateVehicle( 556, 1127.2469,1359.3855,10.8203,183.2775, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1123.3887,1359.4010,10.8203,184.5308, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1119.4945,1358.9907,10.8203,187.3509, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1116.0231,1359.4000,10.8203,171.9974, 0, 1, -1 ) ] = 1;
               vEvento[ CreateVehicle( 556, 1113.3241,1359.0577,10.8203,178.6500, 0, 1, -1 ) ] = 1;
               ivEvento[ vEvento[ VeiculosEvento ]] = 1;
               SetPlayerPos(playerid,1169.2644,1354.8823,14.5703);
               EventoCriado = 1;
               SendClientMessage( playerid, AZUL_BEST, "| INFO | Evento criado com sucesso!" );
               SendClientMessageToAll( AZUL_BEST, "| BCV-Admin | O(A) %s %s criou o evento ( Derby-Monster ), use /irevento!", CargoAdmin(playerid), PlayerName(playerid) );
   	           GameTextForAll("~y~Evento ~g~Criado ~y~use ~b~/irevento", 6000, 1);
               T_AntBug = 1;
               SetTimer( "CongelarPlayers", 1000, false );
               VeiculosEvento++;
		   }
        }
        return 1;
    }
Nгo resolveu.
Reply
#5

Tenta substituir isso:
Reply
#6

Quote:
Originally Posted by wearLy
Посмотреть сообщение
Tenta substituir isso:
Agora estб aparecendo: | ERRO | Comando Invбlido!
Reply
#7

Responde pra min, vocк alteroua nativa SendClientMessageToAll?
Reply
#8

Quote:
Originally Posted by Felipealves
Посмотреть сообщение
Responde pra min, vocк alteroua nativa SendClientMessageToAll?
Alterei nгo...
Reply
#9

Quote:
Originally Posted by LeonardoMD
Посмотреть сообщение
Alterei nгo...
PHP код:
new string[128];
format(stringsizeof(string), "| BCV-Admin | O(A) %s %s criou o evento ( Derby-Monster ), use /irevento!"CargoAdmin(playerid), PlayerName(playerid) );
SendClientMessageToAll(-1string); 
retire o cуdigo atual e coloque esse ae
Reply
#10

Quote:
Originally Posted by Felipealves
Посмотреть сообщение
PHP код:
new string[128];
format(stringsizeof(string), "| BCV-Admin | O(A) %s %s criou o evento ( Derby-Monster ), use /irevento!"CargoAdmin(playerid), PlayerName(playerid) );
SendClientMessageToAll(-1string); 
retire o cуdigo atual e coloque esse ae
Continua dando SERVER: Unknowm Command.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)