[Ajuda] Texto encima da Cabeзa
#1

Entao galera outro post de ajuda kk.

Gostaria de saber como ponho por exemplo o adm digita /servicoadmin.

Aparece encima da cabeзa dele ADMIN: Posso ajudar?

Entende?.

Queria fazer isso.

Se alguem souber agradeзo novamente
Reply
#2

pawn Код:
public OnPlayerText(playerid, text[])
{
    if(admintrampando[playerid] = 1)
    {
    SetPlayerChatBubble(playerid, ADMIN Posso Ajudar?, 0xFF0000FF, 100.0, 10000);
    return 1;
    }
    return 1;
}
Reply
#3

Vlws so vi hoje kk >D Tanks
Reply
#4

Como boto tipo quando liga o /sa ele liga quando desliga ele desliga

@Edit esse comando ta dando erro
Reply
#5

pawn Код:
public OnPlayerText(playerid, text[])
{
    if(admintrampando[playerid] = 1)
    {
    SetPlayerChatBubble(playerid, "ADMIN Posso Ajudar?", 0xFF0000FF, 100.0, 10000);
    return 1;
    }
    return 1;
}
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    new cmd[256], idx;
    cmd = strtok(cmdtext, idx);
    if (strcmp(cmd, "/sa", true) == 0)
    {
                switch(admintrampando[playerid]) {
                        case 0: admintrampando[playerid] = 1; //liga
                        case 1: admintrampando[playerid] = 0; //desliga
                        default: return 0;
                }
                return 1;
        }
return 0;
}
Reply
#6

Tenho uma dъvida: Como disfaz, ou seja, destrуi o PlayerChatBubble ??
Reply
#7

Quote:
Originally Posted by Comando Thug
Посмотреть сообщение
Tenho uma dъvida: Como disfaz, ou seja, destrуi o PlayerChatBubble ??
Bom, ele se destrуi automaticamente depois do tempo marcado:

Код:
SetPlayerChatBubble(playerid, "ADMIN Posso Ajudar?", 0xFF0000FF, 100.0, 10000);
E nгo hб funзгo de destruir o Chat Bubble, mas hб de destruir o Text3D que й quase a mesma coisa


Fiz agora uma baseada no funcionamento do SetPlayerChatBubble, nгo testei mas provavelmente deve funcionar :


pawn Код:
stock HidePlayerChatBubble(playerid)
{
    new bolha[10],x = 0;
    while(x < sizeof(bolha)) bolha[x] = '\0',x++;
    SetPlayerChatBubble(playerid, bolha, 0xFF0000FF, 100.0, true);
    return 1;
}

Espero ter ajudado
Reply
#8

Nгo tem como destruir ou mesmo apagar o ChatBubble.
Faзa o que o Rjjj postou ...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)