Hmmm. Been running into some issues an object not being seen.
I have this object:
nice_suit: object "A fresh outfit" examine_message="A very ornate suit of clothes. They're very dapper." wearable="true";
It's created successfully by this code (getting round the container issues):
:if (is_exists("nice_suit") == false){
:print "You look inside the wardrobe and locate a good-looking outfit, and lay it on the bed.";
:create "nice_suit";
:press_any_key;
:redescribe;
}
And when I "LOOK" I can see "A fresh outfit" in the list of items. But when I try to GET it, it tells me it can't see it. when I examine it, it just says "Nothing special".
HOWEVER, when I change its OBJECT NAME to "nice_outfit" rather than "nice_suit", it works! If I change its name back to "nice_suit", it can't see it again! So bizarre!!!