Author Topic: Colored Chat  (Read 1539 times)

I'm Trying to find all the possible combinations for the colored chat. Like when you say <color:(6 digit code)> and than it shows your words in a certain color. I'd really like to know ALL the colors so please help.

hexadecimal-
http://www.pagetutor.com/common/bgcolors1536.html
There's a color code guide on RTB somewhere, it's print brick you can place down and look at for reference.
Also, the game only supports a small number of colors compared to this.

The possible combinations for ALL hex colors is impossibly high.
There's no way to list all of them.

They're called Hex Codes. You could try searching Hex Chart on Google. Or you can try these:

Web Colors - X11 color names
Web Color Chart

It's hexidecimal code, which covers all colors avaliable in a 256 CYMK color system

basically 256x256x256x256 = how many colors




to get hex codes find a hex code generator using google.



three posts in last 30 seconds that beat me :C

There are 4,294,967,296 possible colors.

ALL the colors

Better get started, gentlemen.  Lot's of posting to do.

4.29---
There are 4,294,967,296 possible colors.

Better get started, gentlemen.  Lot's of posting to do.
forget

There are 4,294,967,296 possible colors.
or basically 256^3 as i stated

CYMK is where its at. Colorsets should sometime be updated from RGB system.

or basically 256^3 as i stated

CYMK is where its at. Colorsets should sometime be updated from RGB system.
And also just completely forget that most monitors are RGB.

It would take approximately 1202399 posts to list all the possible combinations... good luck, guys
« Last Edit: April 24, 2012, 10:09:10 PM by Electrk »

Actually it would take ~1,288,491 posts.  :cookieMonster:

oh yeah add another hex code to the list

<color:rickroll>

no, i'm serious, badspot put that in. its the grey that is used in clan tags.

oh yeah add another hex code to the list

<color:rickroll>

no, i'm serious, badspot put that in. its the grey that is used in clan tags.
holy loving stuff thank you

Just mess with colors, how I found out things. AAAAA EEEEE IIIII OOOOO UUUUU

Here's how it works. You say <color:XYZ> in the string. X, Y, and Z are all 2 characters long. Those two characters are hexadecimal numbers (numbers in base 16). This means that X, Y, and Z all range from 00 to FF.

X tells the amount of red in the color, Y tells the amount of green, and Z tells the amount of blue. FF is the maximum amount of that color, and 00 is the minimum amount. For instance, FF0000 is pure red, 00FF00 is pure green, and 0000FF is pure blue.

You can also mix colors. If X, Y, and Z are all the same, then it is a shade of grey. For instance, 000000 is pure black, 808080 is a medium grey, and FFFFFF is pure white.

If you do not make X, Y, and Z equal, it will just mix together the amounts specified for each color. For instance, yellow is a mix of red and green, so X is FF, Y is FF, and Z is 00. Therefore, yellow's code is FFFF00.

Here's an example. Let's say that you want to simulate someone talking in the chat. You would message the following string to a client:
<color:FFFF00>Mint<color:FFFFFF>: Hello. This will end up looking like a chat message.


EDIT:
To add on to that, this is the progression from 00 to FF:
00, 01, 02, 03, ..., 08, 09, 0A, 0B, 0C, 0D, 0E, 0F,
10, 11, 12, 13, ..., 18, 19, 1A, 1B, 1C, 1D, 1E, 1F,
...,
90, 91, 92, 03, ..., 98, 99, 9A, 9B, 9C, 9D, 9E, 9F,
A0, A1, A2, A3, ..., A8, A9, AA, AB, AC, AD, AE, AF,
...,
F0, F1, F2, F3, ..., F8, F9, FA, FB, FC, FD, FE, FF
« Last Edit: April 24, 2012, 11:39:36 PM by TheRealMint »