Main public logs

Jump to navigation Jump to search

Combined display of all available logs of Ardenfall Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:47, 23 May 2026 Joshcamas talk contribs created page Creating a Dialog (Created page with "=== Dialog Graph Builder === The Dialog Graph Builder is a way to build dialog with C#. TODO Example:<syntaxhighlight lang="c#"> var b= new DialogGraphBuilder(graph); var greet = b.Greeting("Hello!"); var speak = b.Speak("How can I help?"); var mc = b.MultipleChoice(); var c0 = mc.AddChoice("Tell me more"); var c1 = mc.AddChoice("Goodbye"); b.Connect(greet, speak); b.Connect(speak, mc); var topic = b.Topic("Tell me more"); var close = b.Finish(closeDialog: true); b.Con...") Tag: Visual edit