diff options
| author | CoolLord22 <mastermodmaker@yahoo.com> | 2021-08-10 16:29:40 -0400 |
|---|---|---|
| committer | CoolLord22 <mastermodmaker@yahoo.com> | 2021-08-10 16:29:40 -0400 |
| commit | d73c2265b448dbfc794ccbc0e0b47b7c6fc554d3 (patch) | |
| tree | 716d1eaa812b5fb25401a688abc007d5c2de6e69 /bukkit/src/main/resources | |
| parent | 3aced89efcda653ff6dc3ac1cf9639a9cc3eca3a (diff) | |
Adding rank based active quest limits
Adds in a feature similar to EssentialsX's multihome setting, allowing different ranks to have different limits of starting quests. Similar to request made in #91 but modified via name based permissions stored by the plugin.
Diffstat (limited to 'bukkit/src/main/resources')
| -rw-r--r-- | bukkit/src/main/resources/resources/bukkit/config.yml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/bukkit/src/main/resources/resources/bukkit/config.yml b/bukkit/src/main/resources/resources/bukkit/config.yml index 40dc1f94..636b7abc 100644 --- a/bukkit/src/main/resources/resources/bukkit/config.yml +++ b/bukkit/src/main/resources/resources/bukkit/config.yml @@ -150,8 +150,16 @@ options: trim-gui-size: true # Enable/disable titles titles-enabled: true - # Players cannot start any more quests than this at a single time - quest-started-limit: 2 + + # Allow players to have multiple active quests. + # You can set the default number of quests using the 'default' rank below. + # To grant different quest limits to different people, you can define a 'quest-rank' + # Create the 'quest-rank' below, and give the matching permission: quests.limit.<quest-rank> + quest-limit-multiple: + default: 2 + #vip: 5 + #staff: 10 + # Allow players to cancel a quest (you may want to remove the cancel instructions in the global item lore) allow-quest-cancel: true # Allow players to track a quest (you may want to remove the tracking instructions in the global item lore) |
