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



sistema de setplayerchatbubble - WendeLKILL - 10.05.2014

Bom Fiz esse sistemas de Titulos mas queria saber como faзo pra ele ficar pois quando falo no chat ele sai e Tbm Quando eu escolhesse outro ele fosse eliminado
pawn Код:
case 0:
            {
                SendClientMessage(playerid, COR_TITULO, "Titulo da Sua Organizaзгo Carregado Com Sucesso.");
                //SetPlayerChatBubble(playerid, "Policia Militar", COR_TITULO, 1, 1);
                format(string, sizeof(string), "%s",NomeORG(playerid));
                SetPlayerChatBubble(playerid, string, COR_TITULO, 150.0, 999999999999);
                return 1;
            }
case 1:
            {
                if(PlayerInfo[playerid][pAdmin] == 0)
                {
                    SendClientMessage(playerid, COR_TITULO, "Vocк Nao й Um Admin Para usar este Titulo.");
                    return 1;
                }
                if(PlayerInfo[playerid][pAdmin] >= 1)
                SetPlayerChatBubble(playerid, "Administrador", COR_TITULO, 150.0, 999999999999);
                return 1;
            }



Re: sistema de setplayerchatbubble - BreakDriFT - 10.05.2014

Utilize Create3DTextLabel , e para colocar no player Attach3DTextLabelToPlayer


Re: sistema de setplayerchatbubble - WendeLKILL - 10.05.2014

Mas Tipo o Create3dTextlabel eu ja usei e Fica estranho pois ele Fica na frente do chat encima da cabeзa do player ai quando falar no chat as letra se mistura tudo e fica feio


Re: sistema de setplayerchatbubble - lKoDlFuLLaNNo - 10.05.2014

pawn Код:
case 0:
            {
                SendClientMessage(playerid, COR_TITULO, "Titulo da Sua Organizaзгo Carregado Com Sucesso.");
                //SetPlayerChatBubble(playerid, "Policia Militar", COR_TITULO, 1, 1);
                format(string, sizeof(string), "%s",NomeORG(playerid));
                SetPlayerChatBubble(playerid,string,COR_TITULO, 100.0, 10000);
                return 1;
            }
case 1:
            {
                if(PlayerInfo[playerid][pAdmin] == 0)
                {
                    SendClientMessage(playerid, COR_TITULO, "Vocк Nao й Um Admin Para usar este Titulo.");
                    return 1;
                }
                if(PlayerInfo[playerid][pAdmin] >= 1)
                SetPlayerChatBubble(playerid,"Administrador",COR_TITULO, 100.0, 10000);
                return 1;
            }