[Ajuda] Ta certo ?
#1

Para que quando um player digitar alguma coisa, aparecer assim Exemplo :

rCr Diz: eae

Entendem ? Botar o Diz na frente .
To fazendo assim , mais nгo sei se ta certo .

pawn Код:
public OnPlayerText(playerid, text[])
{
    new Str[120];
    format(Str, sizeof(Str), "%s Diz:", text);
    return 1;
}
Reply
#2

Sу falta enviar a mensagem.
Reply
#3

Й isso que eu nгo sei fazer .

SendClientMessage ?

nem tem lуgica .
Reply
#4

Код:
public OnPlayerText(playerid, text[])
{
    new Str[120];
    format(Str, sizeof(Str), "%s Diz:", text);
    SendClientMessageToAll(playerid, 0x000000FF, str);
    return 1;
}
Reply
#5

Ola

so falta como o steki. disse enviar e mensagem fica assim;

pawn Код:
public OnPlayerText(playerid, text[])
{
    new Str[120];
    format(Str, sizeof(Str), "%s Diz:", text);
    SendClientMessageToAll(0xFFFFFFAA, Str); // 0xFFFFFFAA e a cor neste caso й branco
    return 1;
}
PT
Reply
#6

To fazendo com SendClientMessageToAll, mais ta repetindo o que o player fala .
Se eu falar : hnasodhias

Aparece

hnasodhias Diz:
Yamaha: hnasodhias
Reply
#7

PHP код:
public OnPlayerText(playeridtext[])
{
    static
        
xCelulas 120 ],
        
xNick 24 ]
    ;
    
GetPlayerName playeridxNick24 ) ;
    
    
format xCelulassizeof xCelulas ), "%s Diz: %s"xNicktext ) ;
    
SendClientMessageToAll 0xFFFFFFAAxCelulas ) ;
    
    return 
0;

Reply
#8

Vou tentar fazer assim agora :

pawn Код:
public OnPlayerText(playerid, text[])
{
    new Str[120];
    format(Str, sizeof(Str), "%s Diz:", text);
    SendClientMessage(playerid, GetPlayerColor(playerid), Str);
    return 1;
}
Reply
#9

Testa ae, com ID

pawn Код:
new string[120];
format(string,sizeof(string),"[%d] Diz:{FFFFFF}: %s",playerid,text);
SendPlayerMessageToAll(playerid,string);
return 0;
}
Reply
#10

Tenta assim

pawn Код:
public OnPlayerText(playerid, text[])
{

    new Str[120];
    format(Str, sizeof(Str), "Diz: %s", text);
    SendClientMessageToAll(0xFFFFFFAA, Str); // 0xFFFFFFAA e a cor neste caso й branco
    return 1;
}
PT
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)