Skip to main content
Version: 1.20.4

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.

An example of how to use it for display items.

DisplayItem: 'your_item_id#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#your_custom_model_data'

An example of how to use it in the items section.

Items:
- 'Item:your_item_id#your_custom_model_data, Amount:1, Name:&aA custom item'