Graal Forums  

Go Back   Graal Forums > Graal V6 forums > Bug Report
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rating: Thread Rating: 13 votes, 4.69 average. Display Modes
  #1  
Old 04-04-2011, 10:46 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Hmm, while the extra colors are nice, our need for more would be completely satisfied by being able to specify hex (#abcdef) colors.
__________________
Quote:
Reply With Quote
  #2  
Old 04-04-2011, 10:56 PM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
Haha FP4 did the exact same thing I did straight up

I believe all the colours can be accessed via an integer. Ultimately, I'd like to see Skyld add a public function to return all the colours as an array.
Reply With Quote
  #3  
Old 04-04-2011, 11:03 PM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
2D array of colors sorted by hex value, including hex value.

can used shared.hextorgb to make a neat UI, someone less lazy than I could run this array through the shared.hextorgb and create an array with RGB values instead also.

PHP Code:
this.newcolors = {
  {
"black",            "#000000"},
  {
"navy",             "#000080"},
  {
"darkblue",         "#00008B"},
  {
"mediumblue",       "#0000CD"},
  {
"blue",             "#0000FF"},
  {
"darkgreen",        "#006400"},
  {
"green",            "#008000"},
  {
"teal",             "#008080"},
  {
"darkcyan",         "#008B8B"},
  {
"deepskyblue",      "#00BFFF"},
  {
"darkturquoise",    "#00CED1"},
  {
"mediumspringgreen","#00FA9A"},
  {
"lime",             "#00FF00"},
  {
"springgreen",      "#00FF7F"},
  {
"cyan",             "#00FFFF"},
  {
"midnightblue",     "#191970"},
  {
"dodgerblue",       "#1E90FF"},
  {
"lightseagreen",    "#20B2AA"},
  {
"forestgreen",      "#228B22"},
  {
"seagreen",         "#2E8B57"},
  {
"darkslategray",    "#2F4F4F"},
  {
"limegreen",        "#32CD32"},
  {
"mediumseagreen",   "#3CB371"},
  {
"turquoise",        "#40E0D0"},
  {
"royalblue",        "#4169E1"},
  {
"steelblue",        "#4682B4"},
  {
"darkslateblue",    "#483D8B"},
  {
"mediumturquoise",  "#48D1CC"},
  {
"indigo",           "#4B0082"},
  {
"darkolivegreen",   "#556B2F"},
  {
"cadetblue",        "#5F9EA0"},
  {
"cornflowerblue",   "#6495ED"},
  {
"mediumaquamarine""#66CDAA"},
  {
"dimgray",          "#696969"},
  {
"slateblue",        "#6A5ACD"},
  {
"olivedrab",        "#6B8E23"},
  {
"slategray",        "#708090"},
  {
"lightslategray",   "#778899"},
  {
"mediumslateblue",  "#7B68EE"},
  {
"lawngreen",        "#7CFC00"},
  {
"chartreuse",       "#7FFF00"},
  {
"aquamarine",       "#7FFFD4"},
  {
"maroon",           "#800000"},
  {
"purple",           "#800080"},
  {
"olive",            "#808000"},
  {
"gray",             "#808080"},
  {
"skyblue",          "#87CEEB"},
  {
"lightskyblue",     "#87CEFA"},
  {
"blueviolet",       "#8A2BE2"},
  {
"darkred",          "#8B0000"},
  {
"darkmagenta",      "#8B008B"},
  {
"saddlebrown",      "#8B4513"},
  {
"darkseagreen",     "#8FBC8F"},
  {
"lightgreen",       "#90EE90"},
  {
"mediumpurple",     "#9370D8"},
  {
"darkviolet",       "#9400D3"},
  {
"palegreen",        "#98FB98"},
  {
"darkorchid",       "#9932CC"},
  {
"yellowgreen",      "#9ACD32"},
  {
"sienna",           "#A0522D"},
  {
"brown",            "#A52A2A"},
  {
"darkgray",         "#A9A9A9"},
  {
"lightblue",        "#ADD8E6"},
  {
"greenyellow",      "#ADFF2F"},
  {
"paleturquoise",    "#AFEEEE"},
  {
"lightsteelblue",   "#B0C4DE"},
  {
"powderblue",       "#B0E0E6"},
  {
"firebrick",        "#B22222"},
  {
"darkgoldenrod",    "#B8860B"},
  {
"mediumorchid",     "#BA55D3"},
  {
"rosybrown",        "#BC8F8F"},
  {
"darkkhaki",        "#BDB76B"},
  {
"silver",           "#C0C0C0"},
  {
"mediumvioletred",  "#C71585"},
  {
"indianred",        "#CD5C5C"},
  {
"peru",             "#CD853F"},
  {
"chocolate",        "#D2691E"},
  {
"tan",              "#D2B48C"},
  {
"lightgray",        "#D3D3D3"},
  {
"palevioletred",    "#D87093"},
  {
"thistle",          "#D8BFD8"},
  {
"orchid",           "#DA70D6"},
  {
"goldenrod",        "#DAA520"},
  {
"crimson",          "#DC143C"},
  {
"gainsboro",        "#DCDCDC"},
  {
"plum",             "#DDA0DD"},
  {
"burlywood",        "#DEB887"},
  {
"lightcyan",        "#E0FFFF"},
  {
"lavender",         "#E6E6FA"},
  {
"darksalmon",       "#E9967A"},
  {
"violet",           "#EE82EE"},
  {
"palegoldenrod",    "#EEE8AA"},
  {
"lightcoral",       "#F08080"},
  {
"khaki",            "#F0E68C"},
  {
"aliceblue",        "#F0F8FF"},
  {
"honeydew",         "#F0FFF0"},
  {
"azure",            "#F0FFFF"},
  {
"sandybrown",       "#F4A460"},
  {
"wheat",            "#F5DEB3"},
  {
"beige",            "#F5F5DC"},
  {
"whitesmoke",       "#F5F5F5"},
  {
"mintcream",        "#F5FFFA"},
  {
"ghostwhite",       "#F8F8FF"},
  {
"salmon",           "#FA8072"},
  {
"antiquewhite",     "#FA3BD7"},
  {
"linen",            "#FAF0E6"},
  {
"lightgoldenrodyellow""#FAFAD2"},
  {
"oldlace",          "#FDF5E6"},
  {
"red",              "#FF0000"},
  {
"fuschia",          "#FF00FF"},
  {
"deeppink",         "#FF1493"},
  {
"orangered",        "#FF4500"},
  {
"tomato",           "#FF6347"},
  {
"hotpink",          "#FF69B4"},
  {
"coral",            "#FF7F50"},
  {
"darkorange",       "#FF8C00"},
  {
"lightsalmon",      "#FFA07A"},
  {
"orange",           "#FFA500"},
  {
"lightpink",        "#FFB6C1"},
  {
"pink",             "#FFC0CB"},
  {
"gold",             "#FFD700"},
  {
"peachpuff",        "#FFDAB9"},
  {
"navajowhite",      "#FFDEAD"},
  {
"moccasin",         "#FFE4B5"},
  {
"bisque",           "#FFE4C4"},
  {
"mistyrose",        "#FFE4E1"},
  {
"blanchedalmond",   "#FFEBCD"},
  {
"papayawhip",       "#FFEFD5"},
  {
"lavenderblush",    "#FFF0F5"},
  {
"seashell",         "#FFF5EE"},
  {
"cornsilk",         "#FFF8DC"},
  {
"lemonchiffon",     "#FFFACD"},
  {
"floralwhite",      "#FFFAF0"},
  {
"snow",             "#FFFAFA"},
  {
"yellow",           "#FFFF00"},
  {
"lightyellow",      "#FFFFF0"},
  {
"ivory",            "#FFFFF0"},
  {
"white",            "#FFFFFF"},
}; 

Last edited by Mark Sir Link; 04-05-2011 at 12:48 AM.. Reason: *hextorgb
Reply With Quote
  #4  
Old 04-06-2011, 04:23 AM
MrOmega MrOmega is offline
One More Time
MrOmega's Avatar
Join Date: Aug 2010
Location: TN, USA
Posts: 631
MrOmega is an unknown quantity at this point
Send a message via AIM to MrOmega Send a message via MSN to MrOmega Send a message via Yahoo to MrOmega
Quote:
Originally Posted by Stefan View Post
- Support for more body colors on client-side (you can e.g. do for (i=0; i<5; i++) player.colors[i] = "indigo"); server-side support will be added when all clients are switched to v6; you will appear black to other players when using the extended colors; all html colors are supported (20 default colors + 143 html colors)
Quote:
Originally Posted by fowlplay4 View Post
..list...
Quote:
Originally Posted by Mark Sir Link View Post
...list..
still missing all the colors I've counted at most a total of 138, when there should be 163(?)
__________________
Time is the fire in which we burn...
Up, Up, Down, Down, Left, Right, Left, Right, B, A, Select, Start! Now I got 99 LIVES!!!
Reply With Quote
  #5  
Old 04-06-2011, 05:38 AM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
Quote:
Originally Posted by MrOmega View Post
still missing all the colors I've counted at most a total of 138, when there should be 163(?)
pretty sure he means the default colors on Graal, I didn't include them in the list I made but I'm 100% sure all of them are sharing string names anyway now

only way to distinguish between them would be by using the int values

also, there are several duplicate hex values in the HTML color list like lightgray and lightgrey, etc
Reply With Quote
  #6  
Old 04-04-2011, 10:55 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
I agree, the colors choices are pretty bad. Many shades look close to each other, like the different whites(do we really need 6+ shades of white?), and sandy brown is very close to what Graal uses for orange.

Since you have these in already, I imagine you're already parsing a predefined list of RGB/HEX codes, so couldn't you allow us to use raw hex instead?

Either way, the fact that we got new colors = yay! (I did find a shade of orange!)
Reply With Quote
  #7  
Old 04-05-2011, 12:13 AM
oo_jazz_oo oo_jazz_oo is offline
Jazz teh Awesome
oo_jazz_oo's Avatar
Join Date: Jul 2006
Location: California
Posts: 596
oo_jazz_oo is a jewel in the roughoo_jazz_oo is a jewel in the rough
Send a message via MSN to oo_jazz_oo
I am dissapoint.

Its like the same 4 colors over and over...with different names slapped on them...

At first, I thought some of them werent working, but then I realized they are just white with a slight tint of color...
The rest are just slight variations of each other.

So, we ended up with a ton of whites...and some other random colors.
__________________

Reply With Quote
  #8  
Old 04-07-2011, 08:09 PM
Rufus Rufus is offline
Registered User
Join Date: Jun 2004
Location: United Kingdom
Posts: 4,698
Rufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud of
Quote:
Originally Posted by Cubical View Post
Would it be possible to use RGB? These colors kinda suck. I like the improvement and the fact that it was released before v6 was complete but RGB would open up so many more unique body combinations and I'm sure the 10000000 people soon to be playing on facebook would appreciate it.
Quote:
Originally Posted by fowlplay4 View Post
Hmm, while the extra colors are nice, our need for more would be completely satisfied by being able to specify hex (#abcdef) colors.
Quote:
Originally Posted by DustyPorViva View Post
Since you have these in already, I imagine you're already parsing a predefined list of RGB/HEX codes, so couldn't you allow us to use raw hex instead?

Either way, the fact that we got new colors = yay! (I did find a shade of orange!)
Can we get this before v6 is released?
__________________
Quote:
Originally Posted by Loriel View Post
Seriously, you have ****-all for content and you're not exactly pulling in new developer talent, angling for prestigious titles should be your last concern.
Reply With Quote
  #9  
Old 04-05-2011, 12:15 AM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
just went through and looked at all the hex to rgb conversions and the decimal floats to 10 places on several of them, might be better off leaving them in hex form for readability and just using hextorgb as you go after all.
Reply With Quote
  #10  
Old 04-05-2011, 12:28 AM
oo_jazz_oo oo_jazz_oo is offline
Jazz teh Awesome
oo_jazz_oo's Avatar
Join Date: Jul 2006
Location: California
Posts: 596
oo_jazz_oo is a jewel in the roughoo_jazz_oo is a jewel in the rough
Send a message via MSN to oo_jazz_oo
I made a color chart of all the colors from the list Kevin provided...



The bottom left one is wrong because there was a # in the hex, and i'm too lazy to find out what it actually is. (Edit: Just realized, its probably a 3 and i'm just stupid :P)
__________________

Reply With Quote
  #11  
Old 04-05-2011, 12:48 AM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
good spot, blanchedalmond hex should be changed to #FFEBCD

edited post
Reply With Quote
  #12  
Old 04-05-2011, 01:15 AM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
I can understand the reasoning somewhat for not adding full support to just set to hex colors but I still think full support should be added, then players could use a scripted color wheel to select colors or input RGB/HEX values directly

for the players not as interested in full customization it would still be really easy to create a premade palette with the current colors + a few additions like a better shade of brown, orange, etc
Reply With Quote
  #13  
Old 04-05-2011, 02:10 AM
SlikRick SlikRick is offline
Retired
Join Date: Aug 2003
Location: Minnesota,USA
Posts: 685
SlikRick is on a distinguished road
does guigames_arcmessage2.png really need to download EVERY time the client is opened?
Reply With Quote
  #14  
Old 04-05-2011, 02:35 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Ya, we shouldn't get those download popups for minor downloads every time we log onto a server. All it is is an annoying window we have to close when we log on.
Reply With Quote
  #15  
Old 04-05-2011, 02:44 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
At most a generic icon to indicate files are being downloaded would suffice.
__________________
Quote:
Reply With Quote
Reply

Tags
graal v6, windows


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 02:30 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.