Celeb Glow
updates | April 24, 2026

How do I make higher enchants on my weapons, tools, and armor? [duplicate]

I've been looking around trying to find a way to make my enchants higher on my weapons, tools, and armor. I know it's possible in vanilla Minecraft, but haven't found anything. Can someone please give me a pre-written command for a good set of tools, weapons, and armor? However, please don't make it too overpowered, and use enchantments useful to the item except for silk touch.

2

2 Answers

If you mean maximum legal enchantment levels, such as Sharpness 5, Protection 4, Fire Aspect 2, etc., you can do that with an anvil using the item you want to enchant and an enchanted book obtained in Creative Mode (all enchanted books in creative are max level).

You can also use /enchant <player> <enchantment ID> [level] where <player> would be yourself, <enchantment ID> would be the numerical ID of the enchantment, and [level] would be the maximum level of that enchantment. This command applies the specified enchantment to the item in your hand. You can find a list of numerical IDs and levels here.

However, if you're hoping for enchantment levels higher than the maximum legal ones, such as Sharpness 2000 or Protection 10000, you'll need an NBT editor such as NBTExplorer to change the enchantment level through the world data. You can also use Essentials on a server, but that solution leaves the vanilla scope and is less efficient for a simple enchanting task.

2

If you're asking for something like a sword named "SuperSaber" with Sharpness X or something absurd like a wooden shovel with Luring VII, then you have 2 choices.

If you'd like to use my pre-written commands:

/give @p iron_sword 1 0 {ench:[{id:16,lvl:10}]}

This command will give you an iron sword with Sharpness X.

/give @p diamond_sword 1 0 {ench:[{id:21,lvl:8}]}

This is a diamond sword with Looting VIII.

Or if you are feeling good, download the TooManyItems mod.

1