[Ajuda] Oque Hб de Errado ?
#6

Quote:
Originally Posted by Sobrevizion
Посмотреть сообщение
Velho CTRL+C CTRL +V ? To fazendo isto desde ONTEM, iniciei do ZERO tб ? Pawn > new..
jб to б alguns meses no pawn, nгo sei tudo Ok ?
Se ficar tentando criar sistemas e esquecer de estudar, vai ficar anos assim, e nunca vai aprender a "BOA PRATICA"



Faзa exatamente como esta estrutura abaixo, vocк encontra tudo sobre OnDialogResponse aqui.

pawn Код:
#define DIALOG_WEAPONS 3
 
// In some command
ShowPlayerDialog(playerid, DIALOG_WEAPONS, DIALOG_STYLE_LIST, "Weapons", "Desert Eagle\nAK-47\nCombat Shotgun", "Select", "Close");
 
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == DIALOG_WEAPONS)
    {
        if(response) // If they clicked 'Select' or double-clicked a weapon
        {
            // Give them the weapon
            switch(listitem)
            {
                case 0: GivePlayerWeapon(playerid, WEAPON_DEAGLE, 14); // Give them a desert eagle
                case 1: GivePlayerWeapon(playerid, WEAPON_AK47, 120); // Give them an AK-47
                case 2: GivePlayerWeapon(playerid, WEAPON_SHOTGSPA, 28); // Give them a Combat Shotgun
            }
        }
        return 1; // We handled a dialog, so return 1. Just like OnPlayerCommandText.
    }
 
    return 0; // You MUST return 0 here! Just like OnPlayerCommandText.
}
Reply


Messages In This Thread
Oque Hб de Errado ? - by Sobrevizion - 24.07.2014, 00:26
Re: Oque Hб de Errado ? - by Schocc - 24.07.2014, 00:35
Re: Oque Hб de Errado ? - by Sobrevizion - 24.07.2014, 00:39
Re: Oque Hб de Errado ? - by Schocc - 24.07.2014, 00:43
Re: Oque Hб de Errado ? - by Sobrevizion - 24.07.2014, 00:50
Re: Oque Hб de Errado ? - by Schocc - 24.07.2014, 00:53

Forum Jump:


Users browsing this thread: 2 Guest(s)