-
Notifications
You must be signed in to change notification settings - Fork 0
Create New Item
- Basic YAML knowledge
- Plain text editor (works best with the one that has syntax coloring and syntax checking)
ManyItems always drop the template file in /plugin/ManyItems/item_template.yml
. If you ended up losing the contents inside it, you can simply delete the template and restart your server.
name: "Display Name"
display: BUKKIT_MATERIAL_ID
description:
- "Description Here"
- "Can have multiple lines"
type: "stackable/unique"
traits:
trait_id:
# Trait Config Data here...
This is the item display name. It will be displayed on the tooltips and the floating text above player's hotbar. (and you should know it)
The Bukkit Material ID as item display. See here for a list of IDs
A list of description lines to display on item tooltips.
Item stacking type. stackable
means it can stack with another item of same type, while unique
makes the item unstackable. This also gives the unstackable item UUID
Item traits. See Traits section for more information
ManyItems let you creates custom item and use them with plugins that uses Custom Items Driver API from FeatherPowders