Quest Tree
  • Quest Tree Documentation
  • 🕹️Quick Start
    • Installation
    • Start Editing
  • 🎓Tutorials
    • Videos
    • Example Scenes
  • 🧩Components
    • Core Defaults
      • Quest Tree Initializer
      • Quest Tree Sync
      • General Dialogue
      • Default Quest Provider
    • Default UI
      • Default Choice Button
      • Default Dialogue Window
      • Default Dialogue Window Triggerer
      • Default Input Handler
      • Default Item Slot
      • Default Memorable Message
      • Default Quest Foldout
      • Default Quest Foldout Item
      • Default Quest HUD
      • Default Quest HUD Item
      • Default Quest Message UI
      • Default Quest Window
      • NPC World Canvas Handler
    • World Triggers
      • World Dialogue Trigger
      • World Quest Completer
      • World Quest Failer
      • World Quest Receiver
      • World Requirement Trigger
  • ⚙️Systems
    • Quest Tree
      • Editor Window
      • Quest Types Editor
      • Settings
      • Character
      • Items
        • Item
    • Dialogue Tree
      • Editor Window
        • Nodes
          • Dialogue Node
          • Choices Node
          • Receive Node
          • Complete Node
          • Trigger Node
          • Boolean (If) Node
      • Settings
      • Quest Dialogue
      • General Dialogue
  • 📄Scripting
    • Quests
      • Getting Quests
        • Quest Find Settings
      • Working with Quests
        • Quest Types
        • Child Quests
        • Quest NPCs
        • Requirements
      • Managing Quest States
    • Dialogue
      • Getting Dialogue
      • Dialogue Graph
        • Working With the Graph
    • Initialization
    • Disconnect
    • Syncing
    • Events
    • Saving/Loading
    • Player Recognition
    • Choices
    • Items
      • Rewards
        • Managing Granted Rewards
    • Characters
    • Requirements Manager
    • Procedural Generation
  • 🛠️Support
    • Getting Help
  • 📚Changelogs
    • Latest Releases
  • ⭐Rate Me?
Powered by GitBook
On this page
  1. Components
  2. Core Defaults

General Dialogue

General dialogue component.

PreviousQuest Tree SyncNextDefault Quest Provider

Last updated 5 months ago

The general dialogue component allows you to set general dialogue that should be used by an NPC.

Properties

Name
Description

Order Mode

The order mode of the general dialogue(s).

  • Single: Use only one dialogue.

  • Chronological: Use a list of dialogues and run them in chronological order.

  • Chronological And Repeat: Use a list of dialogues, run them in chronological order, and restart from the beginning when the final one is reached.

  • Random: Always randomly pick a dialogue from the list.

Single Dialogue

A single dialogue object that should be used.

Dialogue List

A list of dialogues to use.

Order Mode: The order mode of the general dialogue(s).

  1. Single: Use only one dialogue.

  2. Chronological: Use a list of dialogues and run them in chronological order.

  3. Chronological And Repeat: Use a list of dialogues, run them in chronological order, and restart from the beginning when the final one is reached.

  4. Random: Always randomly pick a dialogue from the list.

Single Dialogue: A single dialogue object that should be used.

Dialogue List: A list of dialogues to use.

🧩