[AJUDA]Evento
#4

Adicione isso а sua public OnPlayerCommandText .


Identei o cуdigo para vocк :


pawn Код:
if(strcmp(cmd, "/criarevento", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAdmin] >= 4)
            {
                if(Evento == 1)
                {
                    SendClientMessage(playerid, COLOR_WHITE, "Jб estб decorrendo um evento use, /pararevento para abrir outro!");
                    return true;
                }
                if(Evento == 0)
                {
                    SendClientMessage(playerid, COLOR_WHITE, "Vocк estб criando um evento e chamando todos do BMC.");
                    for(new i = 0; i < MAX_PLAYERS; i++)
                    {
                        if(IsPlayerConnected(i))
                        {
                            Evento = 1;
                            GetPlayerName(playerid, sendername, sizeof(sendername));
                            format(string,sizeof(string),"Administraзгo: %s estб chamando todos para um Evento.\nPara ir ao evento clique em 'SIM'.\nPara nгo ir clique em 'NГO'.",sendername);
                            ShowPlayerDialog(i, EVENTOC, DIALOG_STYLE_MSGBOX, "EVENTO INICIADO", string, "Sim", "Nгo");
                            GetPlayerPos(playerid,ex,ey,ez);
                        }
                    }
                }
            }
        }
        return true;
    }
    if(strcmp(cmd, "/pararevento", true) == 0)
    {
        if(PlayerInfo[playerid][pAdmin] >= 4)
        {
            if(Evento == 0)
            {
                SendClientMessage(playerid, COLOR_DBLUE, "Nгo estб ativo um evento atualmente, use /criarevento para criar um!");
                return true;
            }
            if(Evento == 1)
            {
                Evento = 0;
                GetPlayerName(playerid, sendername, sizeof(sendername));
                format(string, sizeof(string), "Administrador(a) %s cancelou um evento que estava ocorrendo.", sendername);
                SendClientMessageToAll(COLOR_LIGHTBLUE,string);
            }
        }
        return true;
    }


Espero ter ajudado .
Reply


Messages In This Thread
[AJUDA]Evento - by gcoder - 25.03.2012, 00:58
Re: [AJUDA]Evento - by DouglasRodrigues - 25.03.2012, 01:01
Re: [AJUDA]Evento - by Caio_Freeze - 25.03.2012, 01:02
Re: [AJUDA]Evento - by rjjj - 25.03.2012, 01:03
Re: [AJUDA]Evento - by DouglasRodrigues - 25.03.2012, 01:04
Re: [AJUDA]Evento - by gcoder - 25.03.2012, 01:10
Re: [AJUDA]Evento - by steeldark - 25.03.2012, 01:31
Re: [AJUDA]Evento - by Urubu_Rei - 25.03.2012, 01:35

Forum Jump:


Users browsing this thread: 1 Guest(s)