Hope you are well mate,
so I've built a system where im storing quest data on a webserver which im pulling in & then parsing to strings etc at runtime which all works fine.
What im looking to do is modify the conversation tree from dialogue system which we are using with a quest machine backend, essentially i want to be able to pull in those dynamic fields we pulled from the server.
So for example i could have a line like this "Hi, [USERNAME], Welcome to [Game Name]" etc etc
// C# code:
DialogueLua.SetVariable("USERNAME", "Joshua");
DialogueLua.SetVariable("GameName", "The Awesome Game");
Dialogue Text:: "Hi, [var=USERNAME], Welcome to [var=GameName]"
If you've added a Dialogue System Quest Machine Bridge component to your Dialogue Manager as described on page 7 of the Dialogue System Support manual, your dialogue text can also use Quest Machine tags such as {#counter} and {QUESTER}.