[Ajuda] Comando Bugando '-'
#1

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

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

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

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

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))
??
Reply
#6

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

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


Forum Jump:


Users browsing this thread: 1 Guest(s)