SA-MP Forums Archive
[Ajuda] Callback OnDialogResponse nгo й executada - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Callback OnDialogResponse nгo й executada (/showthread.php?tid=480035)



Callback OnDialogResponse nгo й executada - Tugamars - 08.12.2013

Bem , estou com um problema , quando eu crio Dialogs no FilterScript e as coloco para fazerem determinada funзгo atravйs da Callback OnDialogResponse , as funзхes nunca sгo executadas .

Nгo estou entendendo qual й o problema , conflito de IDs nгo й de certeza .

pawn Код:
if(strcmp("/teste", cmdtext, true, 10) == 0)
{

    ShowPlayerDialog(playerid, 2000, DIALOG_STYLE_INPUT, "Insira o texto :","Ok", "Confirmar", "Cancelar");
    return 1;
}
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == 2000)
    {
        if(response)
        {
        new string[128];
        format(string, sizeof(string), "%s", inputtext);
        SendClientMessage(playerid, 0xF47A00FF, string);
        }
        return 1;
    }
    return 0;
}
Isso foi sу uma dialog de teste , mas nгo funciona nenhuma mesmo .


Re: Callback OnDialogResponse nгo й executada - Tugamars - 08.12.2013

Alguйm ? :S


Re: Callback OnDialogResponse nгo й executada - Schocc - 08.12.2013

REMOVED


Re: Callback OnDialogResponse nгo й executada - Tugamars - 08.12.2013

nгo apresenta nem um nem outro .


Re: Callback OnDialogResponse nгo й executada - SkullFire - 08.12.2013

Cara, tenta fazer com dialog definido, vк se da .
Qualquer coisa, tenta usa o crashdetect pra tentar ver qual й o problema ...


Re: Callback OnDialogResponse nгo й executada - Tugamars - 08.12.2013

Corrigido .

Vlw

O problema era um conflito nos FS , do TextDraw Editor e o meu . Acho que jб estб resolvido .