[Pedido] Comando /criarracha
#9

Vlw ajudou muito ^^ Rep + pra vocк Valeu pelos comentarios assim aprendo mais facil XD, agora queria saber como faзo uma dialog perguntando se ele deseja ir ao evento quando eu digitar o comando


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 BGH.");
                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;
    }


peguei esse do GF, mais queria adaptar para quando o admin digitasse /pararevento todos seriam setados para sua hq de volta



comando /pararevento

pawn Код:
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;
}
Reply


Messages In This Thread
Comando /criarracha - by gabrielloko157 - 09.12.2012, 11:37
Re: Comando /criarracha - by EditPawn - 09.12.2012, 11:55
Re: Comando /criarracha - by Etton - 09.12.2012, 11:59
Respuesta: Comando /criarracha - by gabrielloko157 - 09.12.2012, 12:23
Re: Comando /criarracha - by Ouro - 09.12.2012, 15:49
Re: Comando /criarracha - by EditPawn - 09.12.2012, 15:51
Re: Comando /criarracha - by Nice-.- - 09.12.2012, 16:09
Re: Comando /criarracha - by Ouro - 09.12.2012, 16:58
Respuesta: Comando /criarracha - by gabrielloko157 - 10.12.2012, 09:42
Re: Comando /criarracha - by Nice-.- - 10.12.2012, 10:24

Forum Jump:


Users browsing this thread: 2 Guest(s)