SA-MP Forums Archive
[Ajuda] Comando Bugando '-' - 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 Bugando '-' (/showthread.php?tid=504826)



Comando Bugando '-' - Sobrevizion - 05.04.2014

Me ajudem, eu sei fazer comando de Portгo, mas nesse GM q to editando eu to doido '-'

Tipo eu fui adicionar um new, mas dai nao funcionou, tive q tira-lo, e fazer de outro jeito...

Bom tava td dando certo, atй q... da 2 erros, 2 erros do mesmo tipo, mas em linhas diferentes.

@TOPIC:

A linha do ERRO й essa:

PHP код:
C:\Users\Usuario\Documents\BPP\gamemodes\bpp.pwn(42160) : error 001expected token")"but found "-identifier-"
C:\Users\Usuario\Documents\BPP\gamemodes\bpp.pwn(42167) : error 001expected token")"but found "-identifier-" 
A Linha do CODIGO й essa:

PHP код:
if(strcmp(cmdtext"/ahqmib"true) == 0)
    {
    if ((
IsACop(playerid))
    
MoveObject(playerid,980,-1736.800048828129.513.300000190735,0,03.0);
     
SendClientMessage(playerid0x9E3EFFAA"[INFO] Abrindo Portгo da HQ MIB...");
        return 
1;
    }
    if(
strcmp(cmdtext"/fhqmib"true) == 0)
    {
    if ((
IsACop(playerid))
    
MoveObject(playerid,980,-1736.800048828129.55.3000001907349,0,03.0);
     
SendClientMessage(playerid0x9E3EFFAA"[INFO] Fechando Portгo da HQ MIB...");
        return 
1;
    } 
Como podem notar eu adicionei um: if ((IsACop(playerid)) que no caso, й o cargo de POLICIAL no meu GM.

Espero que me ajudem logo ^^.

Obrigado.


Re: Comando Bugando '-' - Lipe_Stronda - 05.04.2014

pawn Код:
if(strcmp(cmdtext, "/ahqmib", true) == 0)
    {
    if (IsACop(playerid))
    MoveObject(playerid,980,-1736.8000488281, 29.5, 13.300000190735,0,0, 3.0);
     SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");
        return 1;
    }
    if(strcmp(cmdtext, "/fhqmib", true) == 0)
    {
    if (IsACop(playerid))
    MoveObject(playerid,980,-1736.8000488281, 29.5, 5.3000001907349,0,0, 3.0);
     SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");
        return 1;
    }



Re: Comando Bugando '-' - PT - 05.04.2014

pawn Код:
if(strcmp(cmdtext, "/ahqmib", true) == 0)
{
    if(IsACop(playerid))
    {
        MoveObject(playerid,980,-1736.8000488281, 29.5, 13.300000190735,0,0, 3.0);
        SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");  
    }
    return 1;
}  
   
if(strcmp(cmdtext, "/fhqmib", true) == 0)
{
    if(IsACop(playerid))
    {
        MoveObject(playerid,980,-1736.8000488281, 29.5, 5.3000001907349,0,0, 3.0);
        SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");  
    }  
    return 1;
}



Re: Comando Bugando '-' - Cor3y - 05.04.2014

Vocк simplesmente abriu uma chave "{ " e nгo fechou ela.

Modo incorreto:
pawn Код:
if(strcmp(cmdtext, "/ahqmib", true) == 0)
    {
    if ((IsACop(playerid))
    MoveObject(playerid,980,-1736.8000488281, 29.5, 13.300000190735,0,0, 3.0);
     SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");
        return 1;
    }
    if(strcmp(cmdtext, "/fhqmib", true) == 0)
    {
    if ((IsACop(playerid))
    MoveObject(playerid,980,-1736.8000488281, 29.5, 5.3000001907349,0,0, 3.0);
     SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");
        return 1;
    }
Modo correto:
pawn Код:
if(strcmp(cmdtext, "/ahqmib", true) == 0)
{
    {
        if ((IsACop(playerid))
        {
            MoveObject(playerid,980,-1736.8000488281, 29.5, 13.300000190735,0,0, 3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");
            return 1;
        }
    }
    if(strcmp(cmdtext, "/fhqmib", true) == 0)
    {
        if ((IsACop(playerid))
        {
            MoveObject(playerid,980,-1736.8000488281, 29.5, 5.3000001907349,0,0, 3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");
            return 1;
        }
    }
}



Re: Comando Bugando '-' - PT - 05.04.2014

Quote:
Originally Posted by Cor3y
Посмотреть сообщение
Modo correto:
pawn Код:
if(strcmp(cmdtext, "/ahqmib", true) == 0)
{
    {
        if ((IsACop(playerid))
        {
            MoveObject(playerid,980,-1736.8000488281, 29.5, 13.300000190735,0,0, 3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");
            return 1;
        }
    }
    if(strcmp(cmdtext, "/fhqmib", true) == 0)
    {
        if ((IsACop(playerid))
        {
            MoveObject(playerid,980,-1736.8000488281, 29.5, 5.3000001907349,0,0, 3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");
            return 1;
        }
    }
}

tens a certeza que ta correto

pawn Код:
if ((IsACop(playerid))
??


Re: Comando Bugando '-' - Cor3y - 05.04.2014

PT, digo ao uso dos " { } " o cуdigo em si й dele, e nгo meu.


Respuesta: Comando Bugando '-' - [BWL]Chamaleon - 06.04.2014

Galera, nгo repararam o erro em sн,

MoveObject estб errado, estб colocando 0,0 e depois o tempo, mais o tempo VEM ANTES, coloque o comando dessa forma:



pawn Код:
if(strcmp(cmdtext, "/ahqmib", true) == 0)
{
    {
        if ((IsACop(playerid))
        {
            MoveObject(playerid,980,-1736.8000488281, 29.5, 13.300000190735,3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");
            return 1;
        }
    }
    if(strcmp(cmdtext, "/fhqmib", true) == 0)
    {
        if ((IsACop(playerid))
        {
            MoveObject(playerid,980,-1736.8000488281, 29.5, 5.3000001907349, 3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");
            return 1;
        }
    }
}
Caso nгo resulte

pawn Код:
new portao1;

// OnGameModeInt

pext = CreateObject(980,-1736.8000488281, 29.5, 5.3000001907349,0.0,0.0,0.0);

// Comandos

if(strcmp(cmdtext, "/ahqmib", true) == 0)
{
    {
        if ((IsACop(playerid))
        {
            MoveObject(portao1,-1736.8000488281, 29.5, 13.300000190735,3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");
            return 1;
        }
    }
    if(strcmp(cmdtext, "/fhqmib", true) == 0)
    {
        if ((IsACop(playerid))
        {
            MoveObject(portao1,-1736.8000488281, 29.5, 5.30000019073491,3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");
            return 1;
        }
    }
}

// Ou Assim

if(strcmp(cmdtext, "/ahqmib", true) == 0)
{
    {
        if (IsACop(playerid))
        {
            MoveObject(portao1,-1736.8000488281, 29.5, 13.300000190735,3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Abrindo Portгo da HQ MIB...");
            return 1;
        }
    }
    if(strcmp(cmdtext, "/fhqmib", true) == 0)
    {
        if (IsACop(playerid))
        {
            MoveObject(portao1,-1736.8000488281, 29.5, 5.30000019073491,3.0);
            SendClientMessage(playerid, 0x9E3EFFAA, "[INFO] Fechando Portгo da HQ MIB...");
            return 1;
        }
    }
}
Acredito que a 2Є opзгo й mais viбvel

Atenciosamente,