aboutsummaryrefslogtreecommitdiffstats
path: root/bukkit/src/main
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-02-17 13:48:40 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-02-17 13:48:40 +0000
commit3c354a0a45f0492cf075816c080c927c1cc656b6 (patch)
tree76d1ec2f5ba880ffc01150c0aea60c611ad8b24c /bukkit/src/main
parent832e99ce535008ffeb1bf2d63cebb21583262035 (diff)
Update documentation for release 3.15
Diffstat (limited to 'bukkit/src/main')
-rw-r--r--bukkit/src/main/resources/resources/bukkit/quests/example1.yml5
-rw-r--r--bukkit/src/main/resources/resources/bukkit/quests/example2.yml3
-rw-r--r--bukkit/src/main/resources/resources/bukkit/quests/example3.yml3
-rw-r--r--bukkit/src/main/resources/resources/bukkit/quests/example4.yml2
-rw-r--r--bukkit/src/main/resources/resources/bukkit/quests/example5.yml2
-rw-r--r--bukkit/src/main/resources/resources/bukkit/quests/example6.yml2
-rw-r--r--bukkit/src/main/resources/resources/bukkit/quests/example7.yml2
7 files changed, 19 insertions, 0 deletions
diff --git a/bukkit/src/main/resources/resources/bukkit/quests/example1.yml b/bukkit/src/main/resources/resources/bukkit/quests/example1.yml
index ca57f714..f55ad0ff 100644
--- a/bukkit/src/main/resources/resources/bukkit/quests/example1.yml
+++ b/bukkit/src/main/resources/resources/bukkit/quests/example1.yml
@@ -45,6 +45,11 @@ placeholders:
description: "&7Break &f30 blocks &7of any type."
progress: " &8- &f{mining:progress}&7/30 broken"
+# Progress placeholders are used exclusively for the bossbar and actionbar.
+# Use the name of the task, or '*' for all tasks.
+progress-placeholders:
+ '*': "&f{mining:progress}&7/30 blocks broken"
+
# Everything inside this section define quest-specific options
options:
# This is the category for the quest, it will appear under the "examples" category. Categories can be disabled.
diff --git a/bukkit/src/main/resources/resources/bukkit/quests/example2.yml b/bukkit/src/main/resources/resources/bukkit/quests/example2.yml
index 7ad82bea..567c1d8e 100644
--- a/bukkit/src/main/resources/resources/bukkit/quests/example2.yml
+++ b/bukkit/src/main/resources/resources/bukkit/quests/example2.yml
@@ -34,6 +34,9 @@ rewards:
placeholders:
description: "&7Break and place &f100 blocks &7of any type."
progress: " &8- &f{mining:progress}&7/100 broken, &f{building:progress}&7/100 placed"
+progress-placeholders:
+ mining: "&f{mining:progress}&7/100 blocks broken"
+ building: "&f{building:progress}&7/100 blocks placed"
options:
category: "examples"
# Unlike the previous quest, this quest has "example1" as a required quest. You cannot start this quest without "example1" quest complete.
diff --git a/bukkit/src/main/resources/resources/bukkit/quests/example3.yml b/bukkit/src/main/resources/resources/bukkit/quests/example3.yml
index dbd893e4..8b33b3af 100644
--- a/bukkit/src/main/resources/resources/bukkit/quests/example3.yml
+++ b/bukkit/src/main/resources/resources/bukkit/quests/example3.yml
@@ -37,6 +37,9 @@ rewards:
placeholders:
description: "&7Break &f81 gold ore &7and place &f9 gold blocks."
progress: " &8- &f{mining:progress}&7/81 gold ore, &f{building:progress}&7/9 gold blocks"
+progress-placeholders:
+ mining: "&f{mining:progress}&7/81 gold ore broken"
+ building: "&f{building:progress}&7/9 gold blocks placed"
options:
category: "examples"
requires:
diff --git a/bukkit/src/main/resources/resources/bukkit/quests/example4.yml b/bukkit/src/main/resources/resources/bukkit/quests/example4.yml
index 4e9c27a8..d4ab2301 100644
--- a/bukkit/src/main/resources/resources/bukkit/quests/example4.yml
+++ b/bukkit/src/main/resources/resources/bukkit/quests/example4.yml
@@ -35,6 +35,8 @@ rewards:
placeholders:
description: "&7Kill &f3 &7mobs."
progress: " &8- &f{mobkilling:progress}&7/3 mobs"
+progress-placeholders:
+ mobkilling: "&f{mobkilling:progress}&7/3 mobs killed"
# Here you can list messages which will be sent to the player (if they are online) upon completion.
rewardstring:
- " &8* &c$1000 &7was added to your in-game balance."
diff --git a/bukkit/src/main/resources/resources/bukkit/quests/example5.yml b/bukkit/src/main/resources/resources/bukkit/quests/example5.yml
index cb92f0f1..a75a00a2 100644
--- a/bukkit/src/main/resources/resources/bukkit/quests/example5.yml
+++ b/bukkit/src/main/resources/resources/bukkit/quests/example5.yml
@@ -24,6 +24,8 @@ rewards:
placeholders:
description: "&7Place &f10 &7blocks of any type."
progress: " &8- &f{building:progress}&7/10 blocks"
+progress-placeholders:
+ building: "&f{building:progress}&7/10 blocks placed"
options:
category: "examples"
requires:
diff --git a/bukkit/src/main/resources/resources/bukkit/quests/example6.yml b/bukkit/src/main/resources/resources/bukkit/quests/example6.yml
index 0913a7cb..f6b5191d 100644
--- a/bukkit/src/main/resources/resources/bukkit/quests/example6.yml
+++ b/bukkit/src/main/resources/resources/bukkit/quests/example6.yml
@@ -24,6 +24,8 @@ rewards:
placeholders:
description: "&7Place &f10 &7blocks of any type."
progress: " &8- &f{building:progress}&7/10 blocks"
+progress-placeholders:
+ building: "&f{building:progress}&7/10 blocks placed"
options:
category: "permissionexample"
# This quest has no specific permission, however its category does. The permission for the category is "quests.category.permissionexample"
diff --git a/bukkit/src/main/resources/resources/bukkit/quests/example7.yml b/bukkit/src/main/resources/resources/bukkit/quests/example7.yml
index 32bb7e04..37c5532f 100644
--- a/bukkit/src/main/resources/resources/bukkit/quests/example7.yml
+++ b/bukkit/src/main/resources/resources/bukkit/quests/example7.yml
@@ -26,6 +26,8 @@ rewards:
placeholders:
description: "&7Place &f10 &7blocks of any type in world &fworld."
progress: " &8- &f{building:progress}&7/10 blocks"
+progress-placeholders:
+ building: "&f{building:progress}&7/10 blocks placed"
options:
category: "permissionexample"
# This quest has no specific permission, however its category does. The permission for the category is "quests.category.permissionexample"