Author Topic: Doing a weapon script, need black color code thingy  (Read 646 times)

Doing a weapon script, and for the colors i just need em all black

   colors[0]     = "9.0 9.0 9.0 9.0";
   colors[1]     = "9.0 9.0 9.0 9.0";

This is like a trans white. I need solid black.

So whats the numbers for solid black plz

Those values are RGBA values - they are red, green, blue, and alpha where alpha is transparency. Solid black should be 0 0 0 0. If you need more colors, just google "grab chart".

Those values are RGBA values - they are red, green, blue, and alpha where alpha is transparency. Solid black should be 0 0 0 0. If you need more colors, just google "grab chart".
Wow, no edit in help. Black is 0 0 0 1, sorry.