Custom Items
Custom Items
We directly support Oraxen and ItemsAdder
Oraxen
You can simply use the id directly from your config files inside oraxen/items
folder
An example of an oraxen custom item.
The arrow_next_icon
is the id.
arrow_next_icon:
displayname: <#D5D6D8>Next page
material: paper
excludeFromInventory: true
Pack:
generate_model: true
parent_model: item/generated
textures:
- required/arrow_next_icon.png
custom_model_data: 1013
An example of how to use it for display items.
DisplayItem: 'arrow_next_icon'
An example of how to use it for keys.
PhysicalKey:
# Name of the Key.
Name: 'A fancy key using oraxen.'
# Lore of the Key.
Lore: []
# The custom item from oraxen.
Item: 'amethyst'
An example of how to use it in the items section.
Items:
- 'Item:emerald_helmet, Amount:1, Name:&aA custom item'
ItemsAdder
Find the custom model data of your custom item
You have to do /iacustommodeldata your_item_id
, The plugin will send you the ITEM
followed by the CustomModelData
.
Note: you can find more places to use CustomModelData
by going to https://docs.crazycrew.us/docs/plugins/crazycrates/guides/crates/examples/basiccrate
An example of how to use it for display items.
Prizes:
'1':
# The name of the item to display in the gui.
DisplayName: "<gold>BadBones69"
# The item to display in the gui.
DisplayItem: "your_item_id"
# Prize settings
Settings:
# The custom model data of the item, -1 is disabled.
Custom-Model-Data: your_custom_model_data
An example of how to use it for keys.
PhysicalKey:
# Name of the Key.
Name: 'A fancy key using itemsadder.'
# Lore of the Key.
Lore: []
# The custom item from itemsadder.
Item: 'your_item_id'
# The custom model data of the item, -1 is disabled.
Custom-Model-Data: your_custom_model_data
An example of how to use it in the items section.
Items:
- 'Item:your_item_id, Custom-Model-Data:your_custom_model_data, Amount:1, Name:&aA custom item'