Minecraft Custom_Items mod 2026 download
logo
minecraft mod Custom_Items

Custom_Items

Game Version: 1.16
Total Downloads: 955
Updated: Mar 12, 2017
Created: Mar 12, 2017
Download Custom_ItemsDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
v1.0 release 9.33 KB Mar 12, 2017 1.16 955 download Custom_Items v1.0 releaseDownload

Description

Share this:

Custom Items


CustomItems allows you to create your own custom items

 

NOTE: when I say Items, I'm talking about Items, weapons, armor, and blocks. Not just items.

 

How To use:

  1. Download Plugin
  2. Restart server to generate files.
  3. Stop server.
  4. Should now have /plugins/customitems/data/
  5. in that folder create a .yml file (you can name it anything)
  6. Copy and paste the example config from this page and edit it to your liking.

Example Config:

# CustomItems
# =-=-=-=-=-=-=
# Example Item:
#
displayname: "&aEmerald Sword"
material: DIAMOND_SWORD
enchantments:

    – 'DAMAGE_ALL:5'
    – 'MENDING:1'
recipe:

   # shape is crafting recipe (space = no item needed in slot)
    shape:
        – ' E '
        – ' E '
        – ' S '
    ingredients:
        – 'E:EMERALD'
        – 'S:STICK'

API:

CustomItems includes a api just import class me.isaiah.customitems.CustomItem

 

How to use the API:

CustomItem EmSword = new CustomItem("Emerald Sword", Material.DIAMOND_SWORD);
EmSword.addEnch(5, Enchantment.DAMAGE_ALL);
EmSword.addEnch(1, Enchantment.MENDING);
EmSword.shape(" E ", " E ", " S ");
EmSword.setIngred('E', Material.EMERALD);
EmSword.setIngred('S', Material.STICK);
EmSword.register();

TODO:

  • Create custom items via command.
  • Edit created items via command.

 

Comments

Add a comment