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."
}
}
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."
}
}
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
Code: Select all
\C(foreground,background)
Thanks,
fleagor