aboutsummaryrefslogtreecommitdiffstats
path: root/docs/configuration/basic-options.md
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-02-18 13:02:16 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-02-18 13:02:16 +0000
commitb636befbc8601c0a140cb928817497fd98ec14eb (patch)
tree8bcb536b6657e222666b210c5d08f9444392aa4c /docs/configuration/basic-options.md
parentc650dfb71f5cf798a7edd55e58e2ff7438bbb60c (diff)
Update documentation
Diffstat (limited to 'docs/configuration/basic-options.md')
-rw-r--r--docs/configuration/basic-options.md60
1 files changed, 57 insertions, 3 deletions
diff --git a/docs/configuration/basic-options.md b/docs/configuration/basic-options.md
index 713674e6..f24585e9 100644
--- a/docs/configuration/basic-options.md
+++ b/docs/configuration/basic-options.md
@@ -470,9 +470,8 @@ options:
*`options.quests-use-placeholderapi`*
-Choose whether or not start strings, reward strings, reward commands and
-start commands are parsed with PlaceholderAPI. This is disabled by
-default for performance reasons.
+Replace placeholders from PlaceholderAPI in rewards, rewardstrings
+and start strings.
``` yaml
options:
@@ -480,6 +479,61 @@ options:
quests-use-placeholderapi: false
```
+## Progress use PlaceholderAPI
+
+
+*`options.progress-use-placeholderapi`*
+
+Replace placeholders from PlaceholderAPI in boss bar and action bar
+progress strings
+
+``` yaml
+options:
+ # ...
+ progress-use-placeholderapi: false
+```
+
+## Use progress as fallback
+
+
+*`options.use-progress-as-fallback`*
+
+If true, the `progress` string from the placeholders section in quests
+will be used as a fallback in the boss bar and action bar if the
+`progress-placeholders` option is not set.
+
+``` yaml
+options:
+ # ...
+ use-progress-as-fallback: true
+```
+
+## PlayerBlockTracker class name
+
+
+*`options.playerblocktracker-class-name`*
+
+The name of the PlayerBlockTracker class to use for the hook.
+
+``` yaml
+options:
+ # ...
+ playerblocktracker-class-name: "com.gestankbratwurst.playerblocktracker.PlayerBlockTracker"
+```
+
+## PlaceholderAPI global refresh ticks
+
+
+*`options.placeholderapi-global-refresh-ticks`*
+
+How frequently `placeholderapi_evaluate` task placeholders will refresh.
+
+``` yaml
+options:
+ # ...
+ placeholderapi-global-refresh-ticks: 30
+```
+
## Verify quest exists on load