How to create your own object links?

markqz
30 Sept 2013, 23:28
Quest will create its own list in descriptions, e.g., "a loaf of bread, a bottle of wine, and thou".

But sometimes I would like to iterate certain subsets differently. In particular something like

* Me first
* Me next

I can iterate over objects to get this stacking of names, but I don't know how to create the links on the fly.
Is there a command or code snippet that will let me create a link to an existing object, perhaps with my own dynamic (contextual) ?

Thanks!
Mark

Pertex
01 Oct 2013, 08:19
You can use the textprocessor http://quest5.net/wiki/Text_processor something like this:
msg("You can see {object:" + yourobject.name + "}")

markqz
03 Oct 2013, 06:07
Thanks! That seems to be the ticket!
Mark