Quest pool configuration
Guide to configure a quest pool
Here is the default example for starters:
Let's break this down to smaller pieces for better understanding.
type
- Can be eitherglobal
ortimed-random
. Global quest pools are made for story mode quest lines. From A to B and thats it. Players will see all (unlocked) quests in the pool. Timed random is a bit more interesting. It will randomly pick a set of quests from the pool quest folder.name
- This is the name of the quest pooldifficulties
- This defines how should thetimed-random
quest pools pick quests. Here it will try to pick 1 easy, 1 medium, and 1 hard quest for the player. It has no effect for Global quest pools.reset-frequency
- This is a cron scheduler definition. This is the thing that defines when should players get new quests. This example will give players new quests every day at midnight. It has no effect on Global quest pools. You can find help, how to configure Quartz (cron) scheduler here: http://www.cronmaker.com/menu-item
- Determines how should this quest pool look like in the main quest menu.show-in-main-menu
- If false, the quest pool won't be shown in the main quest menupage
- You can define which page you want to display this in the main menu.
menu
- Defines how should the quest pool menu look like for this quest pool.title
- Title of the menu inventory.rows
- How many rows should the chest menu have?display-area
- In what inventory slots can we put the quests that are in this pool.has-back-button
- Should the menu have a back button?has-close-button
- Should the menu have a close button?filler
- If enabled, not used inventory slots will be filled with the provided item.items
- Here you can override the default menu items the same way as they are in the main menu configuration. You don't have to copy-paste the whole thing, since the items will be merged.custom-items
- You can add custom items to your menus. Make sure the keys are always unique.
leveling
- If enabled, a leveling menu and progression system will be created for the quest pool.menu
- Basically the same as above.requirements
- This defines how many levels will be created. This numbers are representing the number of quests required to level up.level-matchers
andcustom-levels
- This is a more advanced topic. These will define the rewards for each level. For a detailed explanation please read here: https://docs.auroramc.gg/auroralevels/configuration/main-config#level-matchers
unlock-requirements
- If it is present in the file, you can specify what permissions the player needs to have and/or what quests he/she should complete before accessing this quest pool.
Last updated