como se hace
#5

es simple
pawn Код:
ShowPlayerDialog(playerid, dialogo(id), estilo, "titulo", "texto", "boton 1", "boton 2");
ej:
pawn Код:
public OnPlayerCommnandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext, "/dialogo", true))
        return ShowPlayerDialog(playerid, 0, "Dialogo Ejemplo", "Zamaroht\nThe_Chaoz\nMrDeath", "Seleccionar", "Salir");
    return  0;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == 0){
        if(response){//El jugador pulso o selecciono el 1є boton ("Seleccionar")
            switch(listitem){
                case 0:
                    return SendClientMessage(playerid, -1, "Seleccionaste a  \"Zamaroht\"");
                case 1:
                    return SendClientMessage(playerid, -1, "Seleccionaste a  \"The_Chaoz\"");
                case 2:
                    return SendClientMessage(playerid, -1, "Seleccionaste a  \"MrDeath\"");
            }
        }
    }
    return 0;
}
aca hay mas ejemplos.
Reply


Messages In This Thread
como se hace - by MrMegaTx - 20.11.2011, 18:23
Respuesta: como se hace - by Adoniiz - 20.11.2011, 18:27
Respuesta: como se hace - by Parka - 20.11.2011, 18:34
Respuesta: como se hace - by MrMegaTx - 20.11.2011, 20:08
Respuesta: como se hace - by TheChaoz - 20.11.2011, 20:46
Respuesta: como se hace - by EduGTA - 20.11.2011, 22:10

Forum Jump:


Users browsing this thread: 3 Guest(s)