Item quest
For this type of quest you must specify an item, with the line :
required_item: <TYPE>
It is not mandatory to specify an item. Simply remove this line from your quest to take into account all items involved in the quest type. For example, a BREAK
quest will include all broken blocks if none are specified.
All types of items are listed on this page. By activating the tooltips in-game (F3+H), you can also see the item IDs directly. In some cases, however, the IDs shown in-game may differ from those used by the server.
Custom items
For quests that require an item, you can specify a custom item.
You must then specify in required_item
the type CUSTOM_ITEM
.
Then, below, you must specify the name of the item and its description.
required_item: CUSTOM_ITEM
custom_item:
type: COBBLESTONE
name: "&c&lThe Saint Cobblestone"
lore:
- "&cWoaaaaaaaw..."
Examples
Potions
For quests that require a potion, you can specify the type and whether it should be upgraded or expanded. To do this, you can add a potion
section to your quest setup, like this:
Please note that a potion cannot be both extended and upgraded.
For a list of potion types, you can visit this link.
Last updated