Posts: 758
Threads: 7
Joined: Mar 2011
Reputation:
0
Make sure the color you give the textdraw has its alpha channel set to something different than 0xFF. SA-MP uses colors in the hexadecimal formatted RGBA. 0x000000FF is visible black, because the first six numbers (minus the 0x) define the Red Green Blue-colors and A stands for alpha. If you change the 0xFF to another value between 0xFF and 0x00 it will become transparant.
Posts: 1,494
Threads: 120
Joined: Dec 2009
Reputation:
0
TextDrawBoxColor(textdraw, 0x000000AA);