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