SA-MP Forums Archive
[Ajuda] SetplaychatBubble - 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] SetplaychatBubble (/showthread.php?tid=510842)



SetplaychatBubble - WendeLKILL - 02.05.2014

Bom Eu fiz um Sistema Usando 3dText Mas Queria botar em setplayerchatbubble e queri saber como posso passar isso pra chat bubble e quando eu escolher a segunda opзao o primeiro chat bubble apaga e so fica o outro pra nao ficar trocando Aki um exemplo do meu sistema V
pawn Код:
if(dialogid == 999)
    {
        switch(listitem)
        {
            case 0:
            {
                SendClientMessage(playerid, COR, "Carregado Com Sucesso.");
                Delete3DTextLabel(MeuText);
                MeuText = Create3DTextLabel("test1", COR, 30.0, 40.0, 50.0, 100.0, 0);
                Attach3DTextLabelToPlayer(MeuText, playerid, 0.0, 0.0, 0.3);
                return 1;
            }
            case 1:
            {
                SendClientMessage(playerid, COR, "Carregado Com Sucesso.");
                Delete3DTextLabel(MeuText1);
                MeuText1 = Create3DTextLabel("Teste2", COR, 30.0, 40.0, 50.0, 100.0, 0);
                Attach3DTextLabelToPlayer(MeuText1, playerid, 0.0, 0.0, 0.3);
                return 1;
            }