[AYUDA] Poner Dialog luego de Spawn
#1

Quisiera saber como pondria para que luego de elegir un equipo de "AddPlayerClass" y presionar "Spawn" que me apareciera un DIALOG_STYLE_LIST para elegir la clase, ej: Asalto, Sniper. Y que cada clase tenga armas diferentes.
Reply
#2

Hola,

Код:
#define DIALOGO_CLASE
public OnPlayerSpawn(playerid)
{
	ShowPlayerDialog(playerid, DIALOGO_CLASE, DIALOG_STYLE_LIST, "Escoge tu clase", "Sniper\nAsalto\nOtra clase", "OK", "");
	return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
	if(dialogid == DIALOGO_CLASE)
	{
	    switch(listitem)
	    {
	        case 0:
	        {
	            // selecciуn sniper
            }
            case 1:
            {
                // selecciуn asalto
            }
            case 2:
            {
                // selecciуn "otra clase"
            }
        }
    }
    return 1;
 }
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)