Get Conversion Name from ConversionEntry in Lua
Posted: Wed Aug 05, 2020 6:20 am
Hi!
I checked forum, documentation and DS C# code but I cannot find the answer.
Is it possible to get the ConversationName in CoversationEntry? I want to avoid potential errors from Design side.
In the example below conversation ("New Conversation 5") has to be rescheduled to another day. Code is in the last DialogueEntry of this conversation.
I would like to change "New Conversation 5" to something like: self.parent.Title.
I checked forum, documentation and DS C# code but I cannot find the answer.
Is it possible to get the ConversationName in CoversationEntry? I want to avoid potential errors from Design side.
In the example below conversation ("New Conversation 5") has to be rescheduled to another day. Code is in the last DialogueEntry of this conversation.
Code: Select all
if not Variable["Resheduled"] then
RescheduleConversation(2, "New Conversation 5");
Variable["Resheduled"] = true;
end