Custom Item Support - mehboss/CustomRecipes GitHub Wiki

Custom Items From Other Plugins

We currently support custom items from the following plugins:

  • Oraxen
  • Nexo
  • ItemsAdder
  • ExecutableItems
  • MythicMobs
  • MMOItems

Below is an example configuration for a custom item called Cursed Axe, along with key usage instructions.

Required:

  • ExactChoice must be set to true in order for this to work properly (excludes items from MythicMobs).
  • You have to disable the 'Crafting' section in the ItemsAdder configuration if using their custom items.

Example Configuration: Cursed Sword

CursedAxe: 
  Enabled: true
  Shapeless: false
  Cooldown: -1
  Item: 'itemsadder:BEDROCK_AXE'
  Item-Damage: 'none'
  Amount: 1
  Placeable: true
  Exact-Choice: true
  Ignore-Data: false
  Ignore-Model-Data: false
  Custom-Tagged: false
  Identifier: 'CURSED_AXE'
  Converter: none
  Permission: 'crecipe.recipe.cursedaxe'
  Name: '&cCursed Axe'
  Lore:
   - '&fThe Cursed Axe'
  Effects: []
  Hide-Enchants: true
  Enchantments:
   - 'DURABILITY:255'
  ItemCrafting:
   - 'XDX'
   - 'XBX'
   - 'XBX'
  Ingredients:
    D:
      Material: DIAMOND
      Identifier: itemsadder:curseddiamond
      Amount: 1
      Name: '&oDiamond Shrine'
    B:
      Material: OAK_PLANKS
      Identifier: itemsadder:cursedplank
      Amount: 1
      Name: '&oWooden Board'
  Custom-Tags: []
  Item-Flags: []
  Attribute: []
  Custom-Model-Data: none
  Disabled-Worlds: []

To use custom items in the crafting result or ingredients, you must include the supported plugin name divided by a hyphen. You may use them within the recipe result or ingredients identifier section.

itemsadder:Custom_Item
executableitems:Custom_Item
mythicmobs:Custom_Item
nexo:Custom_Item
oraxen:Custom_Item

Replace Custom_Item with the custom item's name.

Reminder: The identifier section overrides other fields within the ingredient and seeks out an ItemStack with predefined data.