Clickable Verb Lists do not show when using the ShowRoomDescription
PolAlonso
29 Oct 2020, 14:55Hello to everyone,
I'm currently creating my first text adventure with Quest and I think it is a awesome interface, it allowed me to write in a week a ton of code that otherwise would have been impossible.
However since 3 days ago I'm stuck with a problem. When I run the ShowRoomDescription command, Quest shows the description of the room, object list and exits normally, but the clickable verb list associated with each object of the rooms does not show up when I click on the hyperlinks. This is opposed to allowing the room description to automatically be activated on entering a room.
I hope this has an easy solution... I struggled a lot and I run out of options.
Thanks!!
mrangel
29 Oct 2020, 16:53Could be a timing issue. Verb lists aren't sent with a link when it is displayed, but added at the end of the turn.
Does running
UpdateObjectLinks()
after showing the description make them work?
PolAlonso
12 Nov 2020, 08:19Yes! This worked. Thanks a lot!