15.01.2010, 19:57
If you want the color on the chat to change you have to change the color of the player's name.
Here's an example of a gamemode that would make all players red once they connect to the server.
Here's an example of a gamemode that would make all players red once they connect to the server.
pawn Код:
public OnPlayerConnect(playerid)
{
SetPlayerColor(playerid,0xFF0000FF,");
return 1;
}