Adding items
To add items you need to add them below here:
bounties:
items:
requested:
Then assign a unique name to it. In this tutorial item will be named: "tutorial". Right now it should look like this:
bounties:
items:
requested:
tutorial:
Now below this, we will add some settings to it. This is a list of properties that NEED to be added:
enabled: true/false - defines if the item will be shown in GUI, perfect for special event bounties
removable: true/false - determines if the item can be used for an infinite amount
material: {MATERIAL} - defines what thing can be exchanged for a reward
amount - defines the number of items described above
reward
material - defines an item that the user gets as a reward
amount - defines the number of the reward item
After adding properties it should look like this: (i removed the beginning of the file so it can be used as a template
tutorial:
enabled: true
removable: true
material: IRON_INGOT
amount: 6
reward:
material: DIRT
amount: 3
Last updated