diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-03-05 16:43:02 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-03-05 16:43:02 +0000 |
| commit | 8c01972de0549f8cc4ee6597ec53ee8660a331ab (patch) | |
| tree | 3d761b5292ca3e01dce078bd88771b9b6ad05a3c /src/main/resources | |
| parent | fd416af7f16ffa0dfba4fdd6730341714bec18a2 (diff) | |
Add custom items to GUIv2.15.1
- Closes #107, closes #102, closes #77
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/config.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 0f7e4a46..6f941bea 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -131,6 +131,36 @@ gui: quest-cancel-background: type: "GRAY_STAINED_GLASS_PANE" +# Here you can add custom items to the quest menu +# Categories & quests will fill empty slots +#custom-elements: +# "categories": # apply to the categories menu (the main menu by default) +# 0: # <--- slot 1, note the slots start from 0! so 0 = slot 1 in this case +# display: +# name: "&cExample Custom Item (slot 1)" +# lore: +# - "&7This is a custom item which can be added" +# - "&7to your menus. This is purely cosmetic." +# type: "DIAMOND_BLOCK" +# 1: +# display: +# name: "&cExample Custom Item (slots 2 - 5)" +# lore: +# - "&7This is a custom item which can be added" +# - "&7to your menus, but in slot 2 and repeated" +# - "&73 times." +# - "&7This is purely cosmetic." +# type: "NETHERRACK" +# repeat: 3 # repeats for 3 more slots +# "c:examples": # apply to the category "examples" +# 0: +# display: +# name: "&cExample Custom Item (slot 1)" +# lore: +# - "&7This is a custom item which can be added" +# - "&7to your menus. This is purely cosmetic." +# type: "EMERALD_BLOCK" + options: # If categories are disabled, quests will be put into one big gui. categories-enabled: true |
