Minimal Dialogue System with choices OFFICIAL SALE

Build branching conversations without writing a parser, a script format, or a state machine.

Conquerror Dialogue System is a node based dialogue editor for Unity 6. You draw the conversation. The system runs it.

No new language to learn

No custom scripting syntax, no markup format, no external tool. Everything lives in a Unity window and behaves like Unity. If you can use the Animator or Shader Graph, you already know how this works.

Drag and drop authoring

Right click to add a node. Drag from one port to another to connect them. That's the whole workflow.

Four node types cover everything:

  • Dialogue Line for a speaker and their text
  • Choice for player options
  • Condition to branch on what the player has done
  • Action to remember what just happened

Branches split and rejoin freely. Hit Save when you're done.

Conditions without code

Declare a key in the side panel, give it a name and a type, and it shows up in a dropdown on every Condition and Action node. Set a flag when the player agrees to help. Check it three conversations later. Writers can build the entire branching structure on their own.

Simple to hook up

Code needs to subscribe to three events and call two methods to run a conversation. No UI is forced on you. The runner tells you what to display and gets out of the way.

Your save system stays yours

The system never writes a file. Call one method and you get a string, ready for PlayerPrefs, your own save format, or the cloud.