05.04.2013, 15:20
Hi guys
Please how to delete color on chat and color name player
Please how to delete color on chat and color name player
|
You want the player's name on chat to be white but in game play to have its original color?
|
public OnPlayerText(playerid, text[])
{
new text[128], name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof (name));
format(text, sizeof (text), "{FFFFFF}%s:[%d] %s", name, playerid, text);
SendPlayerMessageToAll(playerid, text);
return 0;
}