💬
Conversation Wiki
  • 💬Conversation
  • 📖Basics
    • Folder
    • File
    • Step Architecture
  • 🪜Steps
    • ConsoleCommandStep
    • ForcePlayerCommand
    • ActionBarStep
    • ChatClickChoiceTextStep
    • ClickTextStep
    • DelayTextStep
    • MovementChoiceTextStep
    • StartConversationStep
    • PlayerPlaySound
  • 📕Conditions
    • PAPICondition
    • PermissionCondition
  • 🪝Triggers
    • BlockTrigger
    • NpcTrigger
  • ⚙️Options
    • CancelCommandOption
    • EndStepOption
    • HideChatOption
    • MoveAwayToEndConversationOption
    • NoDamageOption
    • PositionLockOption
    • RotationLockOption
    • ShiftToEndConversationOption
  • 🛠️API
    • Implemented in your project
    • Simple case with the API
    • Adding a custom module with the API
Powered by GitBook
On this page
  1. Basics

Folder

Understanding the base

In the plugins/Conversation folder you have Config File with multiple parameters that you can modify

# Config of Conversation, the best tool to create conversations
# Dev by SuperMax_8 : https://www.spigotmc.org/members/supermax_8.479560/

# The mode send of instructions messages like shiftToEndMessage
# Can be : CHAT, ACTIONBAR, TITLE
indicationMessageMode: actionbar
# You can use color here
shiftToEndMessage: "&7Sneak to end the conversation"
movementChoiceTextStepGuideMessage: "&eMove to choose an answer and left click to select it"

hoverMessage: "&7Click to select this answer"

# DebugMode, show java errors in the console, useful if you want to come on the discord for support
debugMode: false

# Will send a message in the console or to an op player if the plugin can be updated
updateNotifier: true

Conversation Folder it's the folder with all your conversations, inside this folder, you can create your yaml conversation and arrange them in a folder hierarchy as you wish with many subfolders you want

PreviousConversationNextFile

Last updated 2 years ago

📖