diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-07-26 16:37:13 +0100 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-07-26 16:37:13 +0100 |
| commit | a32d199bb149846f7fddd7dc861ae279e96857c0 (patch) | |
| tree | f2ab0ccfad4dcb20a00525fede8469af03bb1dbd /bukkit/src/main/resources | |
| parent | 7dd39455d92a5118ebc5aedde68f4eba5c138c83 (diff) | |
Add categories.yml
Diffstat (limited to 'bukkit/src/main/resources')
| -rw-r--r-- | bukkit/src/main/resources/resources/bukkit/categories.yml | 34 | ||||
| -rw-r--r-- | bukkit/src/main/resources/resources/bukkit/config.yml | 36 |
2 files changed, 35 insertions, 35 deletions
diff --git a/bukkit/src/main/resources/resources/bukkit/categories.yml b/bukkit/src/main/resources/resources/bukkit/categories.yml new file mode 100644 index 00000000..0ca444ec --- /dev/null +++ b/bukkit/src/main/resources/resources/bukkit/categories.yml @@ -0,0 +1,34 @@ +# Categories are a way of grouping up quests. +# When a player uses /quests, a menu of categories will be presented to them. +# When a player clicks ona category, a list of quests under that category will show. +# If categories are disabled, all quests will be shown under one big GUI. +# Players can access specific categories by command using /quests c [category]. +# If a quest does not have a category, it will not be shown. +categories: + examples: + display: + name: "&cExample Quests" + lore: + - "&7This category contains example quests" + - "&7which are commented in the config." + - "&7The comments should guide you with" + - "&7how the config works." + - "" + - "&cIt is highly recommended you read this" + - "&csection and all the comments so you can" + - "&cmake the most of this plugin." + type: "WATER_BUCKET" + permissionexample: + display: + name: "&cPermission Example" + lore: + - "&7This category is an example of one which" + - "&7requires a permission to open." + - "" + - "&cIt is highly recommended you read this" + - "&csection and all the comments so you can" + - "&cmake the most of this plugin." + type: "WATER_BUCKET" + # This category needs the permission "quests.category.permissionexample", because the category ID is 'permissionexample'. + # The permission for other categories is: "quests.category.<id>". + permission-required: true
\ No newline at end of file diff --git a/bukkit/src/main/resources/resources/bukkit/config.yml b/bukkit/src/main/resources/resources/bukkit/config.yml index 85ef01fe..a9d32ce8 100644 --- a/bukkit/src/main/resources/resources/bukkit/config.yml +++ b/bukkit/src/main/resources/resources/bukkit/config.yml @@ -23,41 +23,7 @@ # | Discord link, or create an issue | # | =================================================== | - -# Categories are a way of grouping up quests. -# When a player uses /quests, a menu of categories will be presented to them. -# When a player clicks ona category, a list of quests under that category will show. -# If categories are disabled, all quests will be shown under one big GUI. -# Players can access specific categories by command using /quests c [category]. -# If a quest does not have a category, it will not be shown. -categories: - examples: - display: - name: "&cExample Quests" - lore: - - "&7This category contains example quests" - - "&7which are commented in the config." - - "&7The comments should guide you with" - - "&7how the config works." - - "" - - "&cIt is highly recommended you read this" - - "&csection and all the comments so you can" - - "&cmake the most of this plugin." - type: "WATER_BUCKET" - permissionexample: - display: - name: "&cPermission Example" - lore: - - "&7This category is an example of one which" - - "&7requires a permission to open." - - "" - - "&cIt is highly recommended you read this" - - "&csection and all the comments so you can" - - "&cmake the most of this plugin." - type: "WATER_BUCKET" - # This category needs the permission "quests.category.permissionexample", because the category ID is 'permissionexample'. - # The permission for other categories is: "quests.category.<id>". - permission-required: true +# Trying to add new categories? This has been moved to categories.yml # The items listed below are placeholder items for quests which the player cannot start. # You should change these for 1.8 |
