SA-MP Forums Archive
Different Colours coming?(It's the right hex code) - 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: Different Colours coming?(It's the right hex code) (/showthread.php?tid=618760)



Different Colours coming?(It's the right hex code) - Gotham - 09.10.2016

Title says it all ,
the code is:
PHP код:
#define COL_RED       0xFF0000
#define COL_GRAY      0xBABABA
#define COL_GREEN    0x00FF51
#define COL_BLUE      0x0000FF
#define COL_YELLOW  0xFFFB00 
It all gets mixed up , can anyone help?


Re: Different Colours coming?(It's the right hex code) - AbyssMorgan - 09.10.2016

you missed alpha channel
PHP код:
// 0x R G B A
#define COL_RED        0xFF0000FF
#define COL_GRAY    0xBABABAFF
#define COL_GREEN    0x00FF51FF
#define COL_BLUE    0x0000FFFF 
#define COL_YELLOW    0xFFFB00FF 



Re: Different Colours coming?(It's the right hex code) - ChristolisTV - 09.10.2016

PHP код:
#define COL_RED       0xFF0000AA
#define COL_GRAY      0xBABABAAA
#define COL_GREEN    0x00FF51AA
#define COL_BLUE      0x0000FFAA
#define COL_YELLOW  0xFFFB00AA 



Re: Different Colours coming?(It's the right hex code) - Gotham - 09.10.2016

Thanks!