We go over how to make custom enchantments on weapons, tools and armors for 1.13 and above.📋 ALL COMMANDS HERE: was made i…
There are other answers below:
This video showcases how to get overpowered enchantments to any item in Minecraft Java edition 1.16.2.Command to get an OP stick: /give @s stick{Enchantment…
/give @p ITEM {display:{Name:'{text”:” NAME “,”italic”:” TRUE OR FALSE “,”color”:” COLOR “,”bold”:” TRUE OR FALSE “}’},Enchantments:[{id:”minecraft: ENCHANTMENT NAME “,lvl: ENCHANTMENT LEVEL s}]} 1 Replace bolded text.
How To Give Enchanted Items In Minecraft? You can set up some simple commands with command blocks, and let players click the button of each command block so that they receive the enchanted items. This is the general command: /give @p
great When you have finished customizing your enchanted book, click on the Generate Command button and then copy/paste the command into Minecraft. If the command is longer than 256 characters, you will need to paste the command into a command block. See more result ››.
To do it, you just need to add the Nbt “{Enchantments:[{id:ENCHANT,lvl:LEVEL}]}” Here is an example like you asked in the question: /give @p diamond_axe{Enchantments:[{id:sh… You can get these Unstable Enchantments by commands, and thus are not obtainable in …
Also, in order to add multiple enchantments at once, you need to use the following syntax inside the “ench” part: ench: [ {id:0,lvl:4}, {id:8,lvl:3}] As a “full” example, the following command would give you a stick called “Irritating Stick” with Sharpness V and Knockback II:
You also missed out a curly brace. Also, you did not format the enchantments correctly. Here’s your command: /give @p minecraft:bow 1 0 {display: {Lore: [Forged by Dark_Matrix9]}, Unbreakable:1, ench: [ {id:48,lvl:10000}, {id:49, lvl:10000}, {id:50, lvl:10000}, {id:51, lvl:10000}]} This is what you get:
You cannot make enchantment tables give players custom enchantments. You cannot use custom enchantments on enchanted books in an anvil. There is no way to make items display their custom enchantments by default under the item flag in bit 0. This is mostly used for the HideFlags NBT.
I would recommend an existing enchants api over the Spigot api. There’s a few considerations I’d make: Standardization / Existing Resources; Ease of coding; End look; Standardization / Existing Resources: Do you plan on using other custom enchants which depend on TokenEnchants or another enchants api? I wouldn’t recommend using some plugins for your …
Related Questions
How do I add multiple enchantments at once?
Also, in order to add multiple enchantments at once, you need to use the following syntax inside the “ench” part: As a “full” example, the following command would give you a stick called “Irritating Stick” with Sharpness V and Knockback II:
How to display custom enchantments under the item flag by default?
There is no way to make items display their custom enchantments by default under the item flag in bit 0. This is mostly used for the HideFlags NBT. Any item’s Enchantments [x].id for any index x is a fully customisable string, completely up to the data pack creator.
How do I add custom enchantments to an anvil?
You cannot use custom enchantments on enchanted books in an anvil. There is no way to make items display their custom enchantments by default under the item flag in bit 0. This is mostly used for the HideFlags NBT. Any item’s Enchantments [x].id for any index x is a fully customisable string, completely up to the data pack creator.
Is it possible to write a custom enchants API?
I’ve actually written a custom enchants api, and it’s a lot more work than using the Spigot api. If your plan is to use an existing enchants api, this isn’t really a concern.