07.02.2013, 22:11
I'm developing a role playing server and I was trying to understand how can I change all the names to a grey color.
#define COLOR_GRAY 0xB9B9BFAA
// Put this at the top of your script
public OnPlayerConnect(playerid)
{
SetPlayerColor(playerid,COLOR_GRAY);
return 1;
}