SA-MP Forums Archive
Changing colors of names to grey? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Changing colors of names to grey? (/showthread.php?tid=414056)



Changing colors of names to grey? - Limbo - 07.02.2013

I'm developing a role playing server and I was trying to understand how can I change all the names to a grey color.


Re: Changing colors of names to grey? - Noles2197 - 07.02.2013

pawn Код:
#define COLOR_GRAY 0xB9B9BFAA
// Put this at the top of your script

public OnPlayerConnect(playerid)
{
    SetPlayerColor(playerid,COLOR_GRAY);
    return 1;
}