Page 2 of 2
Re: Bridge Quests with conversations
Posted: Mon Aug 17, 2020 3:48 pm
by Tony Li
Thanks. I received your email, and I'm downloading the project now. I'll try to let you know what's going on by the end of the day.
Re: Bridge Quests with conversations
Posted: Mon Aug 17, 2020 9:59 pm
by Tony Li
Hi,
I emailed you a solution with screenshots. I'll recap it here in case others run into the same issue:
Change the Return node's Condition to 'Discuss Quest" instead of Discuss
ed Quest".
To track down the issue, I temporarily set the Dialogue Manager's Debug Level to Info. When I returned to the quest giver, the conversation showed that all of the dialogue entry nodes' Conditions evaluated false, including:
Code: Select all
CurrentQuestState("exploreBoatAndReturn") == "success"
This is because the quest will not complete until it receives the "Discussed Quest" message, which occurs after the conversation has started. By changing it to "Discuss Quest", which is sent before the conversation starts, the quest is properly in the success state when the conversation checks it.
Re: Bridge Quests with conversations
Posted: Tue Aug 18, 2020 9:49 am
by mschoenhals
Thanks Tony! That did the trick. I'm not sure I would have come up with that solution on my own - I'm going to take a look at how you troubleshooted this one. I'll also check the other quests to see if the same issue arises.
Thanks very much for all your help, much appreciated!
Re: [SOLVED]Bridge Quests with conversations
Posted: Tue Aug 18, 2020 11:01 am
by Tony Li
Glad to help!