Author Topic: Colorset colors not appearing....  (Read 512 times)

Don't worry, I'm not releasing a color set, this is just for a particular event on my server...
Anyway, the color set I'll be making has a row of greens, a row of greys, and a row of browns, with a fourth row that's only one gold color and one blue color, and unrelated to the colorset, those two colors will be admin only.
Anyway....
Code: [Select]
0 255 0 120
0 226.7 255 255
0 198.4 0 255
0 170.1 0 255
0 141.8 0 255
0 113.5 0 255
0 85.2 0 255
0 56.9 0 255
0 28.6 0 255
DIV:Greens

255 255 255 255
226 226 226 255
198 198 198 255
170 170 170 255
141 141 141 255
113 113 113 255
85 85 85 255
56 56 56 255
28 28 28 255
DIV:Greys
My greys show up as all the same color, and the second green is transparent, neither of these things should be happening.
Why?
« Last Edit: January 18, 2011, 08:25:04 AM by DrenDran »

Nevermind, I figured out that you must choose between using decimal 0-1 or hex 1-255 and that you can't use decimals with the larger numbers setting.
EDIT: Still have some problems, but I modified OP to show my fixes.

I truly do not know what seems the problem. I've made colorsets before and never had problems. Also I think this belongs in coding help. And why are there links?

Wait do you have the following:

Colorset.txt
Description.txt
Namecheck.txt
« Last Edit: January 18, 2011, 08:23:57 PM by Jacky »

I truly do not know what seems the problem. I've made colorsets before and never had problems. Also I think this belongs in coding help. And why are there links?

Wait do you have the following:

Colorset.txt
Description.txt
Namecheck.txt
Don't need namecheck.txt



The problem was that I was using numbers like '226.7'.
Apparently you either have to choose between using decimals (0 to 1).
Or decimal system based on hex increments (0 to 255).
But you can't combine the two, so you can't have a decimal on your colors if you choose to do the (0-255) method.
Or maybe there is a special rule about when to use decimals and when to use 0-255 that I don't know, I wouldn't really know, because I only needed to make this one little colorset this one time, but what I've said seems true to my purposes.