How to make everyones name white when they join - 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: How to make everyones name white when they join (
/showthread.php?tid=561006)
How to make everyones name white when they join -
Samieastwood - 31.01.2015
Like some people are telling me there name is red, blue. i want to make it like everyone that joins the name in tab is white only.
Re: How to make everyones name white when they join -
Schneider - 31.01.2015
pawn Код:
public OnPlayerConnect(playerid)
{
SetPlayerColor(playerid, 0xFFFFFFFF);
return 1;
}