Page 1 of 1

Is there any way to use the "Title" field as the display for the "Links To" list instead of Menu Text?

Posted: Wed Feb 16, 2022 4:29 pm
by EffieArtoria
I want to use a specific emphasis to show when a dialogue option has previously been used. After a lot of poking and prodding I've found that this will work:

Code: Select all

[lua(return Dialog[thisID].SimStatus == "WasDisplayed" and "[em5]Sorry![/em5]" or "Sorry!";)]
(if there's a better alternative to achieve the same result please let me know!!)

The drawback I have with this approach is that it gets very difficult to read when looking through the "Links To" field for the node directly beforehand. I have multiple options that all just start "lua (return Dialog..." and have to scan ahead to find what the actual Menu choice is. I thought if I filled in the Title field for the nodes that might solve the problem, but it looks like these are not used in the editor.

Is there any way around this? It's not stopping me from developing, it's just a bit of a pain.

Re: Is there any way to use the "Title" field as the display for the "Links To" list instead of Menu Text?

Posted: Wed Feb 16, 2022 4:46 pm
by Tony Li
In the next update, I'll add an option in the Menu > Show > ... submenu to prefer titles over menu text in the Link To list.

Re: Is there any way to use the "Title" field as the display for the "Links To" list instead of Menu Text?

Posted: Thu Feb 17, 2022 3:05 pm
by EffieArtoria
Thank you so much!