SA-MP Forums Archive
Colored part of the text - 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: Colored part of the text (/showthread.php?tid=364854)



Colored part of the text - Squirrel - 01.08.2012

Well I forgot how to make this lol...
Yeah...

So my problem is that I forgot how to put one part of the message in other color
For example:
Код:
format(string, sizeof(string), "Welcome back. Your score is {0xFFFF00FF}%i{0xFFFF00FF}",GetPlayerScore(playerid));
"%i" should be displayed in other color :/


Re: Colored part of the text - willsuckformoney - 01.08.2012

Embeded colors:
pawn Код:
COL_WHITE       "{FFFFFF}"
COL_BLACK       "{0E0101}"
COL_GREY        "{C3C3C3}"
COL_GREEN       "{6EF83C}"
COL_RED         "{F81414}"
COL_YELLOW      "{F3FF02}"
COL_ORANGE      "{FFAF00}"
COL_LIGHTBLUE   "{00C0FF}"
COL_BLUE        "{0049FF}"
COL_PINK        "{FF00EA}"



Re: Colored part of the text - Squirrel - 01.08.2012

Thanks