SA-MP Forums Archive
Color Code - 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: Color Code (/showthread.php?tid=605713)



Color Code - MonSterLikeHD - 23.04.2016

Hi, i want to make something like, when i type let's say, Green, to generate the color for green, tell me if it is good what i type in here:

Quote:

#define Green #15741b

it is good what i made ?


Re: Color Code - Untonyst - 23.04.2016

PHP код:
"{FFFFFF}White color and {"Green"}green color" 



Re: Color Code - MonSterLikeHD - 23.04.2016

Quote:
Originally Posted by Untonyst
Посмотреть сообщение
PHP код:
"{FFFFFF}White color and {"Green"}green color" 
Like this ?

Quote:

#define {"Green"} #15741b




Re: Color Code - povargek - 23.04.2016

Код:
#define cGreen 	#"{6FA828}"

SendClientMessage(playerid, -1, "White Text " cGreen " Green Text"); // -1 is a white color



Re: Color Code - Untonyst - 24.04.2016

Quote:
Originally Posted by MonSterLikeHD
Посмотреть сообщение
Like this ?
u can use this macros as

PHP код:
#define Green #15741b
SendClientMessage(playerid, -1"White color and {"Green"}green color"); 
or u can do so

PHP код:
#define Green 15741b 
SendClientMessage(playerid, -1"White color and {"#Green"}green color"); 
or

PHP код:
#define Green "15741b"
SendClientMessage(playerid, -1"White color and {"Green"}green color"); 



Re: Color Code - SyS - 24.04.2016

Like this
PHP код:
#define GREEN "{00FF00}" 
you can simply use it like this
PHP код:
SendClientMessage(playerid,-1,"This is "GREEN"Green Color");