19.07.2014, 08:53
Try This !!
pawn Код:
public OnPlayerText(playerid, text[])
{
new pName[MAX_PLAYERS], string[24;]
GetPlayerName(playerid, pName, sizeof(pName));
format(string, sizeof(string), "{%06x}%s | %d{FFFFFF}: %s", (GetPlayerColor(playerid) >>> 8), pName, playerid, text);
SendClientMessageToAll(-1, string);
SetPlayerChatBubble(playerid, text, 0xFFFFFFFF, 75.0, 5000);
return 0;
}