Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
var color = String.Format("#{0:X6}", random.Next(0x1000000)); connection.Send("say", "/bgcolor " + color);
It's a painfully annoying background when it switches constantly.
Last edited by Metatron (Oct 10 2014 5:12:26 am)
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
Rainbow background: http://fiin.iwiin.com/programming/rainbowBackground
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
That's super long lol. I have a code snippet that I borrowed online and just interpreted for EE, so I can show you that.
Offline
That's super long lol. I have a code snippet that I borrowed online and just interpreted for EE, so I can show you that.
Please do
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
string color = ""; int red = 0, green = 0, blue = 0; //blue-aqua blue = 255; for (green = 0; green < 256; green ++) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor "+color); Thread.Sleep(10); } //aqua-green green = 255; for (blue = 255; blue > 0; blue--) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } //green-red blue = 0; for (red = 0; red < 256; red++) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } //red-yellow red = 255; for (green = 255; green > 0; green--) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } //yellow green = 0; for (blue = 0; blue < 256; blue++) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } blue = 255; // for (red = 255; red > 0; red --) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); }
i converted rgb to html
if you can read this....good for you
Offline
BuzzerBee wrote:That's super long lol. I have a code snippet that I borrowed online and just interpreted for EE, so I can show you that.
Please do
Add me on TeamViewer: "BuzzerBee"
Offline
string color = ""; int red = 0, green = 0, blue = 0; //blue-aqua blue = 255; for (green = 0; green < 256; green ++) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor "+color); Thread.Sleep(10); } //aqua-green green = 255; for (blue = 255; blue > 0; blue--) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } //green-red blue = 0; for (red = 0; red < 256; red++) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } //red-yellow red = 255; for (green = 255; green > 0; green--) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } //yellow green = 0; for (blue = 0; blue < 256; blue++) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); } blue = 255; // for (red = 255; red > 0; red --) { color = ColorTranslator.ToHtml(Color.FromArgb(red, green, blue)); conn.Send("say", "/bgcolor " + color); Thread.Sleep(10); }
i converted rgb to html
Mine used to have rgb built in.
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
Not sure if y'all resolved the giant codes
but yeah
http://rainbowcoding.com/how-to-create- … avascript/
They have a cool HSL to RGB thing goin' on... probably would cut down a bit.
And make a lot more sense.
#yolo
Offline
Don't do the whole raise green, lower red, etc etc thing. Loop from 0 to 360 (Hue), and convert HSV to RGB (Or HEX in this case), rather than looping from 0 to 255 in different cases for each color.
Player Since 2011. I used to make bots and stuff.
Offline
[ Started around 1743844956.2126 - Generated in 0.216 seconds, 12 queries executed - Memory usage: 1.56 MiB (Peak: 1.74 MiB) ]