SA-MP Forums Archive
Stupid Question. - 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: Stupid Question. (/showthread.php?tid=400156)



Stupid Question. - jueix - 17.12.2012

Ok, So I was wondering If it's possible to send a client message which has one color for one word and an other colour for the other word. For example.

pawn Код:
SendClientMessage(playerid, "Green, Blue.");



Re: Stupid Question. - RajatPawar - 17.12.2012

****** y_colors by ******, it makes this easier..


Re: Stupid Question. - jueix - 17.12.2012

Quote:
Originally Posted by Rajat_Pawar
Посмотреть сообщение
****** y_colors by ******, it makes this easier..
Ok thanks.


Re: Stupid Question. - Devilxz97 - 17.12.2012

pawn Код:
#define COL_CYAN    "{00FFFF}"
#define COL_LGREEN  "{9ACD32}"

CMD:test(playerid, params[])
{
     SendClientMessage(playerid, -1, "{00FFFF}CYAN COLOR! {9ACD32}LIGHTGREEN COLOR!");
     return 1;
}
hmm