Prompt echo not working correctly.

User avatar
Vadi
Posts: 5042
Joined: Sat Mar 14, 2009 3:13 pm

Re: Prompt echo not working correctly.

Post by Vadi »

Wasn't aware there there was a MUD standard for them. The color names we're using are the X11 ones: http://en.wikipedia.org/wiki/X11_color_names

(because it was the easiest to create the color table from)

Pain
Posts: 18
Joined: Sat Jan 09, 2010 1:13 am

Re: Prompt echo not working correctly.

Post by Pain »

In every other client I've ever used, your green was called lime, and they had an actual green (0,128,0) for green, and (o,2550) for lime, aka bright green.

Pain
Posts: 18
Joined: Sat Jan 09, 2010 1:13 am

Re: Prompt echo not working correctly.

Post by Pain »

Ohhhhhhhhhh http://lists.w3.org/Archives/Public/www ... /0052.html

Edit: I see in that list, the X11 green is 0,255,0 and such and the HTML/CSS green is the one I'm talking about. Can I just modify LuaGlobal to use the colors that I'm accustomed to?

User avatar
Vadi
Posts: 5042
Joined: Sat Mar 14, 2009 3:13 pm

Re: Prompt echo not working correctly.

Post by Vadi »

Code: Select all

color_table.green = {0, 128, 0}
  color_table.lime = {0, 255, 0}
  color_table.silver = {192, 192, 192}

User avatar
Alexander Divine
Posts: 65
Joined: Mon Dec 21, 2009 7:01 pm

Re: Prompt echo not working correctly.

Post by Alexander Divine »

If for some reason you need the entire list and don't mind overlap on color_table, here you go. I called them a_color because it stands for "aetolia_color."

Code: Select all

        a_darkred             = {128, 0, 0},
        a_darkgreen           = {0, 179, 0},
        a_brown               = {128, 128, 0},
        a_darkblue            = {0, 0, 128},
        a_darkmagenta         = {128, 0, 128},
        a_darkcyan            = {0, 128, 128},
        a_grey                = {192, 192, 192},
        a_darkgrey            = {128, 128, 128},
        a_red                 = {255, 0, 0},
        a_green               = {0, 255, 0},
        a_yellow              = {255, 255, 0},
        a_blue                = {0, 85, 255},
        a_magenta             = {255, 0, 255},
        a_cyan                = {0, 255, 255},
        a_white               = {255, 255, 255}

Post Reply