Author Topic: How do I make a colorset?  (Read 524 times)

Just a quick, simple question, how do I make a color set? Thanks.

Put numbers into notepad.

Take a look at colorset.txt in Blockland/config/server to get an idea of how it works. The numbers represent the colors in whatever colorset your server is currently using.

Did you even look at the file. It only has about 3 different types of characters.

First, you have four values in a color set that you can combine.
Red,Green,Blue,Alpha(or transparent)
For short, the value type is named RGBA.
If you wanted to make a redscale using 5 reds then do this:
Code: [Select]
255 0 0 255
215 0 0 255
175 0 0 255
135 0 0 255
95 0 0 255
DIV:Reds
The DIV:Blue part is the category name.  Without it, your column won't show up.
Also, try to mix around colors to make more advanced colors, rather than just basic and trans colors.
Code: [Select]
255 240 31 255
255 240 31 100
DIV:Yellow
This creates yellow I believe.
The first is a solid yellow, the other is transparent.
That's all the basics you need to know to make a colorset.
« Last Edit: July 17, 2009, 12:56:21 PM by trumpetfan »