Posts: 1,190
Threads: 196
Joined: Dec 2011
Reputation:
0
well i made two textdraws with the same color (box type) on in the front of another but the color is darker. how can i make the textdraw with the normal color?
Posts: 58
Threads: 0
Joined: Jun 2007
Reputation:
0
It is darker because your box color has a transparency to it and you placed it on top of another box. You will need to set that box's alpha to 255 to remove its transparency if you don't want the overlay effect.
Posts: 58
Threads: 0
Joined: Jun 2007
Reputation:
0
Yes, for player-textdraws. Or just TextDrawBoxColor for global textdraws. The alpha is always the last 2 hexadecimals (0xFFA200FF). FF = 255. Some textdraw editors give you the option to set them, depending on which editor you're using(if you're using any).
Posts: 1,190
Threads: 196
Joined: Dec 2011
Reputation:
0
Thanks for the explanation.