Colors - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Colors (
/showthread.php?tid=200997)
Colors -
Rokzlive - 20.12.2010
Whats the color code of a transparent black? I have a textdraw box, but its solid grey i want it to be black and transparent.
Re: Colors -
Babul - 20.12.2010
Код:
TextDrawUseBox(TDLottoTitle,1);
TextDrawBoxColor(TDLottoTitle,0x0000007f);
edit: i suggest you to give those values a try aswell: 0000003f 0000006f ...9f ...cf ...ff, you wont like the half transparent 7f, the relevant parts are the 2 least significant digits..
Re: Colors -
Rokzlive - 20.12.2010
Ty ill try it.