11.05.2012, 04:33
Soluзгo simples e fбcil..
pawn Код:
public OnPlayerText(playerid, text[])
{
if(strlen(text) >= 100)
return SendClientMessage(playerid, -1, "seu texto contйm muitas linhas, diminua umpouco...");
SetPlayerChatBubble(playerid, text, -1, 100.0, 10000);//Chat em cima da cabeзa ao falar.
//Falar com ID na frente
new string[128];
format(string, sizeof(string), "{FF0000}[{FFFFFF}ID: %d{FF0000}]:{FFFFFF} %s", playerid, text);
SendPlayerMessageToAll(playerid,string);
return 0;
}