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



Comando /abrirevento - LeonardoBCF - 23.04.2013

Eu ja tinha colocado esse sistema de evento no GM, hj fui usar esse cmd atoa, ae aconteceu isso: SERVER: Unknow Command

PHP код:
    if (!strcmp("/abrirevento"cmdtrue))
    {
        if (
PlayerInfo[playerid][pAdmin] < 3)
        {
            
SendClientMessage(playeridCOLOR_GRAD1"   Autorizaзгo insuficiente !");
            return 
1;
        }
        if(
evento == 0) {
            for(new 
0<= EVENTOID+1++)
                
entrouevento[i] = false;
            
evento 1;
            
format(Celulassizeof(Celulas), "{FFFFFF} -- Evento aberto pelo admin! Digite {FF230A}/irevento {FFFFFF}-- ");
            
SendClientMessageToAll(Vermelho,Celulas);
            
GetPlayerPos(playeridDest[0],Dest[1],Dest[2]);
            return 
1;
        }
        else if(
evento >= 1) {
            
evento 0;
            
format(Celulassizeof(Celulas), "{FFFFFF} -- Evento fechado pelo admin ! -- {FF230A}%d{FFFFFF} pessoas foram ao evento.",entrou);
            
SendClientMessageToAll(Vermelho,Celulas);
            
entrou=0;
            return 
1;
        }
        return 
0;
    } 



Re: Comando /abrirevento - PT - 23.04.2013

Ola

tenta assim

pawn Код:
if(!strcmp("/abrirevento", cmd, true))
{
    if (PlayerInfo[playerid][pAdmin] < 3)
    {
        SendClientMessage(playerid, COLOR_GRAD1, "   Autorizaзгo insuficiente !");
        return 1;
    }
    if(evento == 0) {
        for(new i = 0; i <= EVENTOID+1; i ++)
            entrouevento[i] = false;

        evento = 1;
        format(Celulas, sizeof(Celulas), "{FFFFFF} -- Evento aberto pelo admin! Digite {FF230A}/irevento {FFFFFF}-- ");
        SendClientMessageToAll(Vermelho,Celulas);
        GetPlayerPos(playerid, Dest[0],Dest[1],Dest[2]);
        return 1;
    }
    else if(evento >= 1) {
        evento = 0;
        format(Celulas, sizeof(Celulas), "{FFFFFF} -- Evento fechado pelo admin ! -- {FF230A}%d{FFFFFF} pessoas foram ao evento.",entrou);
        SendClientMessageToAll(Vermelho,Celulas);
        entrou=0;
        return 1;
    }
}
PT