From 14b89c12aded79a5790af0d3cf59d94fd06b936e Mon Sep 17 00:00:00 2001 From: "Youenn \"SkytAsul\" Le Jeune" Date: Tue, 7 Oct 2025 15:43:56 +0200 Subject: [PATCH] Update BeautyQuests placeholders information --- docs/users/placeholder-list.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/docs/users/placeholder-list.md b/docs/users/placeholder-list.md index d5e11ab..dc95cc9 100644 --- a/docs/users/placeholder-list.md +++ b/docs/users/placeholder-list.md @@ -2204,11 +2204,22 @@ Find examples of how the placeholders can be used on [signs](https://github.com/ /// integrated | Built into Plugin /// +Find an up-to-date list on the [SpigotMC page](https://www.spigotmc.org/resources/beautyquests.39255/field?field=documentation). + ``` -%beautyquests_player_inprogress_amount% -%beautyquests_player_finished_amount% -%beautyquests_total_amount% -%beautyquests_advancement_ID% +%beautyquests_total_amount% to show the total amount of quests +%beautyquests_player_inprogress_amount% to show the amount of quests the player is into +%beautyquests_player_finished_amount% to show the amount of quests the player has finished +%beautyquests_player_finished_total_amount% to show the amount of quests the player has finished, and sums up quests which has been completed multiple times +%beautyquests_started_ordered% to show the advancement of each quest, one after another. You can configure the time to change in the config file. +%beautyquests_started_ordered_X% to show the advancement of each quest but split into multiple lines, customizable in config.yml​ +%beautyquests_advancement_X% to show the advancement of the quest with ID X +%beautyquests_advancement_X_raw% to show the advancement of the quest with ID X, but only with the form on one number: + -1 if the player has not started the quest + -2 if the player is in an ending stage (i.e. in branching) + ≥0 the stage ID, if the player is currently doing the quest​ +%beautyquests_player_quest_finished_X% to show amount of times the quest with ID X has been finished +%beautyquests_started_id_list% which returns a list of quests currently in progress for player. The list is an enumeration of IDs, separated with ; ``` ----