Quote:
I have made door between Blue room and Red room. When I go to red room, I can open and close door, but tads don't tell that there is door. Even if I write look, the tads don't tell that there is door. How do I fix that?
TADS 3 assumes that you'll normally include a mention of any doors present in the room description, so that it would be redundant to list them separately. If you want doors to be explicitly listed you can add "isListed = true" to the definition of your doors, e.g.:
Code:
+ frontDoor: Door 'front door*doors' 'front door'
isListed = true
;
But I really don't recommend this. It's much better to include "The front door lies to the east" or some such in your room description rather than having "You can see a front door here" appear under the room description; listing a door explicitly in such a way generally looks rather amateurish.
So I think you're trying to fix something that doesn't really need fixing; my advice would be to ensure that you mention any doors in your room descriptions.