[Ajuda] Problemas com FSs que tem DIALOG
#4

O meu problema na verdade й com os Dialog Response, por que o dialog principal de quando eu aperto F no lugar da concessionaria abre normalmente.

Quote:
Originally Posted by UPsamp
Посмотреть сообщение
Sim, troque o id do dialog, provavelmente deve estar #define DIALOGID numero.
Exemplo:
#define CONCESSIONARIA 1
.
Isso pode estar causando conflito, pois o seu GM ja deve ter um dialog com ID 1...
Jб mudei o id de todas dialogs

Quote:
Originally Posted by [BWL]Chamaleon
Посмотреть сообщение
cria outro estilo de dialog
pawn Код:
enum dialog {
    a_dialogid,
    a_style,
    a_caption[512],
    a_info[2048],
    a_button1[16],
    a_button2[16]
};
new NRGVictorDialogs[64][dialog], NRGVictorDialogIndex;

NRGVictorShowPlayerDialog( playerid, dialogid, style, caption[], info[], button1[], button2[] ) {
    for( new a = 0; a < NRGVictorDialogIndex; a++ ) {
        if( NRGVictorDialogs[a][a_dialogid] == dialogid ) {
            return ShowPlayerDialog( playerid, dialogid, style, caption, info, button1, button2 );
        }
    }
    NRGVictorDialogs[NRGVictorDialogIndex][a_dialogid]  = dialogid;
    NRGVictorDialogs[NRGVictorDialogIndex][a_style]     = style;
    sscanf(caption, "s[2048]", NRGVictorDialogs[NRGVictorDialogIndex][a_caption]);
    sscanf(info,    "s[2048]", NRGVictorDialogs[NRGVictorDialogIndex][a_info]);
    sscanf(button1, "s[2048]", NRGVictorDialogs[NRGVictorDialogIndex][a_button1]);
    sscanf(button2, "s[2048]", NRGVictorDialogs[NRGVictorDialogIndex][a_button2]);
    NRGVictorDialogIndex++;

    return ShowPlayerDialog( playerid, dialogid, style, caption, info, button1, button2 );
}

// exemplo de uma que fiz uma vez.
// Nгo se esqueзa de conferir se a #define nomedadialog NЪMERO DELA nгo estб repetindo.. isso dб conflito.
Uso?
mesma coisa..

sу troca

ShowPlayerDialog
por
NRGVictorShowPlayerDialog

Atenciosamente,
Depois que eu fiz isso nem o dialog principal ta abrindo '-'.
Reply


Messages In This Thread
Problemas com FSs que tem DIALOG - by Duffs - 26.06.2014, 22:22
Re: Problemas com FSs que tem DIALOG - by UPsamp - 26.06.2014, 22:39
Re: Problemas com FSs que tem DIALOG - by [BWL]Chamaleon - 27.06.2014, 01:42
Re: Problemas com FSs que tem DIALOG - by Duffs - 27.06.2014, 04:05
Re: Problemas com FSs que tem DIALOG - by n0minal - 27.06.2014, 05:15
Re: Problemas com FSs que tem DIALOG - by Duffs - 27.06.2014, 06:27
Re: Problemas com FSs que tem DIALOG - by Duffs - 27.06.2014, 23:42

Forum Jump:


Users browsing this thread: 1 Guest(s)