Examples
Dialogues builder
Dialog Builder is GUI tool for creating interactive dialogues for video games. Because the exported format is JSON you can use it in any programming language.Work procedure
- Add actors for dialogues.
- Add dialogs and choices.
- Export data as JSON.
Dialogue description
- ID and type ( dialogue | choice )
- Menu text: may be empty if parent is dialogue
- Dialogue text
- Link: ID of ancestors
- Contains: C - condition, A - code after, B - code before
Dialogue as data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 41, | |
"parent": 40, | |
"isChoice": false, | |
"actor": 20, | |
"conversant": 10, | |
"menuText": "", | |
"dialogueText": "Over the gate is hell.", | |
"conditionsString": "", | |
"codeBefore": "", | |
"codeAfter": "", | |
"outgoingLinks": [ | |
42 | |
] | |
} |
It may interest you to know
- Dialogues module for Crafty game engine
- Source code of Dialogues builder