I recently came across the map which had an enchanted Blaze Rod and Book. I've searched the forums, and nothing seems to clarify this. How can one enchant an un-enchantable item, e.g. Blaze Rod, Cyan Dye, Paper, etc. Is there a way to do this without mods?

8

9 Answers

You can enchant an item that is normally not enchantable with a couple of methods. One way is to use an anvil and an enchanted book in creative mode. In creative mode, the game ignores the normal rules of what can and cannot be enchanted.

You can also do it using commands with NBT data embedded within it. The format for the /give command is as follows:

/give [player] [item] [quantity] [data value] [NBT tags]

For this, we're interested in the [NBT tags] part. The format for the enchantment tag is {ench:[{id:x1,lvl:y1},{id:x2,lvl:y2},...]}. So the full command for just giving a player an enchanted item would be as follows:

/give [player] [item] [quantity] [data value (normally 0)] {ench:[{id:x1,lvl:y1},{id:x2,lvl:y2},...]}

Check out this post on the Minecraft Forums for more details about using NBT data in commands.

For example, if I wanted to give myself (or the player) a stick with Sharpness V and Silk Touch I, I'd use the following command:

/give @p stick 1 0 {ench:[{id:16,lvl:5},{id:33,lvl:1}]}

You can do this for any item, any enchantment, and any value of level.

Also, a note: using the /enchant command does not work. The /enchant command respects all normal enchantment rules, regardless of the gamemode of the player. Even though you can make an Efficiency V stick with an anvil in creative mode, you cannot do it using the /enchant command.

I addition to James' answer, you may also want to look at those two videos that explain the process:

and

2

To enchant enter this command

/enchant add [enchantmant] [Level]

Example:

/enchant add fire_aspect 10

That command will enchant the item that you are holding to set mobs on fire

1

They are generally using editing tools, like MCEdit, to create the worlds and add into them the items that you are mentioning. Like the Super Hostile maps that you can get (I believe its Enchanted Caves that has a collection of ever more powerfully enchanted signs that are really very handy weapons in that map :))

I have yet, however, to see a command in SPC that would allow you to put an enchantment on an non-enchantable item. I am sure someone will correct me if I am wrong on this aspect :))

2

It was most likely tims the enchanter (a plugin) which makes it possible to enchant anything like the blaze rod and book. with it you can enchant a sword with all enchantments in-game like protection to level 127 etc. (127 is the highest level).

Combine it with an enchanted book with an anvil.

2

With the new Enchanted books in snapshot 12w49a made it possible to enchant anything. Just go into creative mode, take an enchanted book (Or enchant a book to get it), place it in an anvil together with the item and bam!

0

On a previous version of Old Minecraft (Xbox edition, might only be the 360) you could enchant anything with anything! Feathers with feather falling, tnt with looting, gold blocks with unbreaking! The list goes on. Sadly blocks that were enchanted did not shimmer when placed :( Oh, and the devs fixed that in another update, much to my dismay (RIP Feather enchanted feather falling)

1

NBTedit, singleplayercommands(e.g. /enchant add 21 4),MCedit

I have a tutorial on NBTedit here:

2