diff --git a/docs/src/fancydialogs/tutorials/open-dialog-npc-action.md b/docs/src/fancydialogs/tutorials/open-dialog-npc-action.md index 53df876e..9656ad4e 100644 --- a/docs/src/fancydialogs/tutorials/open-dialog-npc-action.md +++ b/docs/src/fancydialogs/tutorials/open-dialog-npc-action.md @@ -1,6 +1,6 @@ --- icon: dot -order: 9 +order: 7 --- # Open dialog npc action diff --git a/docs/src/fancydialogs/tutorials/quick-actions.md b/docs/src/fancydialogs/tutorials/quick-actions.md new file mode 100644 index 00000000..e2fad123 --- /dev/null +++ b/docs/src/fancydialogs/tutorials/quick-actions.md @@ -0,0 +1,13 @@ +--- +icon: dot +order: 8 +--- + +# Quick actions + +FancyDialogs doesn't support the quick-actions hotkey, but has a command to open a quick action dialog. +To open the quick actions dialog, use the command: `/qa` or `/quickactions`. + +You can customize the quick actions dialog in the `plugins/FancyDialogs/data/dialogs/quick_actions.json` file. + +If you want to disable the quick actions dialog, you can set the `disable-quick-actions-dialog` option to true in the `plugins/FancyDialogs/featureFlags.yml` file. \ No newline at end of file diff --git a/docs/src/fancydialogs/tutorials/welcome-dialog.md b/docs/src/fancydialogs/tutorials/welcome-dialog.md new file mode 100644 index 00000000..294c1816 --- /dev/null +++ b/docs/src/fancydialogs/tutorials/welcome-dialog.md @@ -0,0 +1,16 @@ +--- +icon: dot +order: 9 +--- + +# Welcome dialog + +You can configure a dialog to be shown to players when they join the server for the first time. +A default welcome dialog is included with FancyDialogs, but you can customize it or create your own welcome dialog. + +You can find the default welcome dialog in the `plugins/FancyDialogs/data/dialogs/welcome.json` file. +Feel free to edit this file to customize the welcome dialog to your liking. + +If you want to use another dialog as the welcome dialog, you can change the id in the `plugins/FancyDialogs/config.yml` file by changing the `welcome_dialog_id` option to the ID of your desired dialog. + +To completely disable the welcome dialog, you can set the `disable-welcome-dialog` to true in the `plugins/FancyDialogs/featureFlags.yml` file. \ No newline at end of file