SA-MP Forums Archive
How to Make Dialog Colorful? - 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 Dialog Colorful? (/showthread.php?tid=366028)



How to Make Dialog Colorful? - dalkgamler - 04.08.2012

i wanna know how to change color of listitems at the dialog?


Re: How to Make Dialog Colorful? - Vince - 04.08.2012

https://sampwiki.blast.hk/wiki/Color_Embedding


Re: How to Make Dialog Colorful? - rumen98 - 04.08.2012

Try this {00FF22} put before text
Please Rep


AW: How to Make Dialog Colorful? - dalkgamler - 04.08.2012

if i do this
pawn Код:
ShowPlayerDialog(playerid,9324,2,"{0x00FF00FF}hallo","{0x00FF00FF}dsadasf\nsdnaihoiwadosa","BLABLA","");// Do something here
it isnt colorful it write it


Re: How to Make Dialog Colorful? - rumen98 - 04.08.2012

PHP код:
ShowPlayerDialog(playerid,9324,2,"{0x00FF00FF}hallo","{0x00FF00FF}dsadasf\nsdnaihoiwadosa","BLABLA","");// Do something here 
try this

PHP код:
ShowPlayerDialog(playerid,9324,2,"{FF00FF}hallo","{FF00FF}dsadasf\nsdnaihoiwadosa","BLABLA","");// 



Re: How to Make Dialog Colorful? - Johndaonee - 04.08.2012

Hex code
pawn Код:
#define     farve_white         "{FFFFFF}"
#define     farve_blue          "{15D4ED}"
#define     farve_red           "{B31515}"
#define     farve_green         "{37DB45}"
#define     farve_lightgreen    "{8CED15}"



Re: How to Make Dialog Colorful? - Syntax - 05.08.2012

You do not necessarily need the "#define" at the top of the script, you can use the colour embedding. The colours used in colour embedding are simply 6 numbers/letters. You simply use the 6 letters/numbers out of the original colour (The one with 0x and crap at the beginning). So, white is: FFFFFF. To embed it like that, simply put { and } around it, so it'd be: {FFFFFF} and then any writing after that will appear white. Or, using Mr. Daone's defines, you could use {15D4ED} and anything after that would appear in blue, and so on, so fourth.

Drop me a PM if you need help.


AW: How to Make Dialog Colorful? - dalkgamler - 05.08.2012

thanks rep for you all


AW: How to Make Dialog Colorful? - dalkgamler - 05.08.2012

thanks you alll +rep for all


Respuesta: How to Make Dialog Colorful? - HarlemSAMP - 05.08.2012

Hey'a you forgot to rep me! :@ kidding, glad someone helped you, it's not hard to set up the color embedding