Color in showdialogue - 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 in showdialogue (
/showthread.php?tid=557961)
Color in showdialogue -
xX4m4zingXx - 15.01.2015
Hello,
How would I add this(#F7C600) color to the text "Type your password below to login."?
Код:
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""COL_WHITE"Login","Type your password below to login.","Login","Quit");
Re: Color in showdialogue -
RedFusion - 15.01.2015
pawn Код:
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""COL_WHITE"Login","{F7C600}Type your password below to login.","Login","Quit");
https://sampwiki.blast.hk/wiki/Colour_Embedding
Re: Color in showdialogue -
xX4m4zingXx - 15.01.2015
Thank you.