I don't know what I did, but I havn't changed anything to do with colors at all and all of the sudden I'm getting an Bug, can't load colors Bland city time! That is funny to watch every time but playing with no colors isn't as funny... Do you know of any common things people do to mess this up? Or what I could have even possibly done because I don't even know where to start.
Color Problem
Posted by Rok on Sun 09 Sep 2001 06:08 PM — 5 posts, 20,114 views.
Can you post the exact bug message? It is hard to tell from what you have said what is happening exactly.
Here is the bug I get:
[*****] BUG: Load_colors: can't open color file -- bland city time!
[*****] BUG: Load_colors: can't open color file -- bland city time!
You can work it out with a bit of searching. By doing a "grep" on "bland" I found this line:
Thus, it can't open COLOR_FILE.
Looking in mud.h I see:
Thus I would make sure that the file "colors.dat" is in the "system" directory.
if (!(fpArea = fopen(COLOR_FILE, "r")))
{
bug("Load_colors: can't open color file -- bland city time!");
return;
}
Thus, it can't open COLOR_FILE.
Looking in mud.h I see:
#define COLOR_FILE SYSTEM_DIR "colors.dat" /* User-definable color*/
Thus I would make sure that the file "colors.dat" is in the "system" directory.
Ah... that would be the problem <G> Thank you! Hmm... I wonder how I deleted that? Oh well! Thanks again!