[Duv/Pedido]Comando.
#4

fiz em dialog mas bem basico, ve se ta bom:

pawn Код:
CMD:chamarevento(playerid, params[])
{
    new id;
    new str[200];
    new nome[MAX_PLAYER_NAME];
    GetPlayerName(playerid, nome, 24);
    if(sscanf(params, "u", id)) return SendClientMessage(playerid, -1, "Use /chamarevento [ID]");
    format(str, sizeof(str), "O Jogador %s Estб te convidado\npara um evento, deseja aceitar?", nome);
    ShowPlayerDialog(id, 567, DIALOG_STYLE_MSGBOX, "Evento", str, "Aceitar", "Negar");
    SendClientMessage(playerid, -1, "Jogador Convidado, aguarde a resposta");
    return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == 567)
    {
        if(response)
        {
            //Oque vai acontecer se ele aceitar...
        }
        else
        {
            //Oque vai acontecer se ele negar...
        }
    }
    return 1;
}
Reply


Messages In This Thread
[Duv/Pedido]Comando. - by lyllrasta - 13.02.2012, 20:17
Re: [Duv/Pedido]Comando. - by Hard` - 13.02.2012, 20:22
Re: [Duv/Pedido]Comando. - by lyllrasta - 13.02.2012, 20:34
Re: [Duv/Pedido]Comando. - by Lucas_Alemao - 13.02.2012, 21:17
Re: [Duv/Pedido]Comando. - by Lуs - 13.02.2012, 21:24
Re: [Duv/Pedido]Comando. - by lyllrasta - 13.02.2012, 22:12
Re: [Duv/Pedido]Comando. - by Hard` - 13.02.2012, 22:15
Re: [Duv/Pedido]Comando. - by lyllrasta - 13.02.2012, 22:19
Re: [Duv/Pedido]Comando. - by Lucas_Alemao - 13.02.2012, 22:23
Re: [Duv/Pedido]Comando. - by Lуs - 13.02.2012, 22:23

Forum Jump:


Users browsing this thread: 1 Guest(s)