3DTextLabel - 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: 3DTextLabel (
/showthread.php?tid=598755)
3DTextLabel -
GeneralAref - 16.01.2016
how to change 3DTextLabel color?
Re: 3DTextLabel -
Eth - 16.01.2016
This.
Re: 3DTextLabel -
GeneralAref - 16.01.2016
no no i want change part of text color.
Re: 3DTextLabel -
Eth - 16.01.2016
dude,
PHP код:
Update3DTextLabelText(Text3D:id,color, text[]);
Re: 3DTextLabel -
GeneralAref - 16.01.2016
this is for change all texts color.i have hello.i want this :
hel lo
Re: 3DTextLabel -
GeneralAref - 16.01.2016
Nothing?
Re: 3DTextLabel -
RaPSoR - 16.01.2016
https://sampwiki.blast.hk/wiki/Colors_List#Color_embedding
https://sampwiki.blast.hk/wiki/Colors_List#GameText
Re: 3DTextLabel -
Eth - 16.01.2016
Quote:
Originally Posted by RaPSoR
|
Like RaPSoR told you, I am really glad that new people over there reads the wiki
I have repped you for that RaPSoR
it's good that you are learning instead of keeping asking questions.
Re: 3DTextLabel -
-CaRRoT - 16.01.2016
Код:
#define COLOR_WHITE 0xFFFFFFAA
#define COL_BROWN "{FFF1AF}"
#define COL_WHITE "{FFFFFF}"
Create3DTextLabel("This is white {FFF1AF}This is brown{FFFFFF} back to white ", COLOR_WHITE,...);
That's just a simple example of how it works.
Re: 3DTextLabel -
GeneralAref - 17.01.2016
thanks.