SA-MP Forums Archive
player name 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: player name grey (/showthread.php?tid=338336)



player name grey - TheDiscussionCafe - 29.04.2012

when i type in regular message into game, my name is grey. why?!


Re: player name grey - ReneG - 29.04.2012

https://sampwiki.blast.hk/wiki/Function:SetPlayerColor


Re: player name grey - iRemix - 29.04.2012

You should set the colour of the name when they connect/spawn.

pawn Код:
public OnPlayerConnect(playerid)
{
       SetPlayerColor(playerid, 0xFF0000FF);
       return 1;
}
Give reputation if I helped.