Hello,
I apologize if any of this doesn't come across cleanly or clearly, this is my first time posting to one of these boards. I had a question about the behavior of the "name" property for rooms and objects, and this is using Hugo v3.1.01. Normally I would do this (and please bare with me):
Code: Select all
room testroom "test room"
{
long_desc
{
" You are surrounded by unfinished code.
Obviously whoever did this has no idea
what he's doing."
}
}
But assuming that I had gone
temporarily mad and wanted to do it this way:
Code: Select all
room testroom
{
name
{
"test room"
}
long_desc
{
" You are surrounded by unfinished code.
Obviously whoever did this has no idea
what he's doing."
}
}
so that I could use different color properties, or if I went off the deep end and wanted a switch statement to randomize room names, or whatever, I run into a problem.
Instead of this:
Test room
You are surround by unfinished code, etc.
I get this:
Test room
.
You are surround by unfinished code, etc.
So in the second example I get a newline followed by a period, still bold. The status line displays "
MORE..." then after pressing Enter, displays the aforementioned period as the room name.
How can I avoid the addition of that period and the "MORE..." issue?
I noticed a different situation when I tried to use the name property in a similar way on a plain object, but hopefully the answer to how to fix this will also apply to that. Otherwise I can relate that one as well.
Also, for future additions/changes to Hugo, how about adding a "color" formatting sequence to embed in printed strings? Something like
So you could do \C(RED,BLACK) right in the middle of a line, you know, to cause eyestrain and irritation. I imagine it could have applications for the forces of good as well. Also, I'd like to vote for png support as an addition. I saw that one mentioned in another post.
Thanks,
fleagor