How can I combine high-level enchantments?
up vote
0
down vote
favorite
I know how to give myself high-level enchantments, but I don't know the command to combine them, if there is even a way to combine them. Is this possible and if so, how do I do it?
minecraft minecraft-commands
bumped to the homepage by Community♦ 23 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
up vote
0
down vote
favorite
I know how to give myself high-level enchantments, but I don't know the command to combine them, if there is even a way to combine them. Is this possible and if so, how do I do it?
minecraft minecraft-commands
bumped to the homepage by Community♦ 23 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I know how to give myself high-level enchantments, but I don't know the command to combine them, if there is even a way to combine them. Is this possible and if so, how do I do it?
minecraft minecraft-commands
I know how to give myself high-level enchantments, but I don't know the command to combine them, if there is even a way to combine them. Is this possible and if so, how do I do it?
minecraft minecraft-commands
minecraft minecraft-commands
edited Mar 31 '17 at 0:37
Vemonus
54.7k37205331
54.7k37205331
asked Mar 31 '17 at 0:25
Optimo Gamer
61
61
bumped to the homepage by Community♦ 23 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 23 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
I assume you want to use a command to give yourself an item with an enchantment above 5. To do that, you can just specify all the enchantments you want in a list (marked by ), for example like this:
/give @p diamond_pickaxe 1 0 {ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}
If you want to modify an existing item, you have to throw it on the ground, use a /entitydata
command and pick it up again. Example command:
/entitydata @e[type=item,c=1] {Item:{tag:{ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}}}
add a comment |
up vote
0
down vote
If you mean putting different high level enchantments onto the same item using the /enchant
command, run the command twice, each time with a different enchantment and they will stack.
You can also do this without commands by combining tools/armor and an enchanted book in an anvil.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I assume you want to use a command to give yourself an item with an enchantment above 5. To do that, you can just specify all the enchantments you want in a list (marked by ), for example like this:
/give @p diamond_pickaxe 1 0 {ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}
If you want to modify an existing item, you have to throw it on the ground, use a /entitydata
command and pick it up again. Example command:
/entitydata @e[type=item,c=1] {Item:{tag:{ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}}}
add a comment |
up vote
0
down vote
I assume you want to use a command to give yourself an item with an enchantment above 5. To do that, you can just specify all the enchantments you want in a list (marked by ), for example like this:
/give @p diamond_pickaxe 1 0 {ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}
If you want to modify an existing item, you have to throw it on the ground, use a /entitydata
command and pick it up again. Example command:
/entitydata @e[type=item,c=1] {Item:{tag:{ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}}}
add a comment |
up vote
0
down vote
up vote
0
down vote
I assume you want to use a command to give yourself an item with an enchantment above 5. To do that, you can just specify all the enchantments you want in a list (marked by ), for example like this:
/give @p diamond_pickaxe 1 0 {ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}
If you want to modify an existing item, you have to throw it on the ground, use a /entitydata
command and pick it up again. Example command:
/entitydata @e[type=item,c=1] {Item:{tag:{ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}}}
I assume you want to use a command to give yourself an item with an enchantment above 5. To do that, you can just specify all the enchantments you want in a list (marked by ), for example like this:
/give @p diamond_pickaxe 1 0 {ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}
If you want to modify an existing item, you have to throw it on the ground, use a /entitydata
command and pick it up again. Example command:
/entitydata @e[type=item,c=1] {Item:{tag:{ench:[{id:32,lvl:5},{id:33,lvl:1},{id:34,lvl:5}]}}}
answered Sep 1 '17 at 9:07
Fabian Röling
4,94531235
4,94531235
add a comment |
add a comment |
up vote
0
down vote
If you mean putting different high level enchantments onto the same item using the /enchant
command, run the command twice, each time with a different enchantment and they will stack.
You can also do this without commands by combining tools/armor and an enchanted book in an anvil.
add a comment |
up vote
0
down vote
If you mean putting different high level enchantments onto the same item using the /enchant
command, run the command twice, each time with a different enchantment and they will stack.
You can also do this without commands by combining tools/armor and an enchanted book in an anvil.
add a comment |
up vote
0
down vote
up vote
0
down vote
If you mean putting different high level enchantments onto the same item using the /enchant
command, run the command twice, each time with a different enchantment and they will stack.
You can also do this without commands by combining tools/armor and an enchanted book in an anvil.
If you mean putting different high level enchantments onto the same item using the /enchant
command, run the command twice, each time with a different enchantment and they will stack.
You can also do this without commands by combining tools/armor and an enchanted book in an anvil.
edited Sep 3 '17 at 12:41
cherryblossom
824425
824425
answered Apr 1 '17 at 9:31
Angelsofty
113
113
add a comment |
add a comment |
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f304686%2fhow-can-i-combine-high-level-enchantments%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown