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?










share|improve this question
















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.



















    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?










    share|improve this question
















    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.

















      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?










      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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.
























          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}]}}}





          share|improve this answer




























            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.






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "41"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              noCode: true, onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              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

























              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}]}}}





              share|improve this answer

























                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}]}}}





                share|improve this answer























                  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}]}}}





                  share|improve this answer












                  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}]}}}






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Sep 1 '17 at 9:07









                  Fabian Röling

                  4,94531235




                  4,94531235
























                      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.






                      share|improve this answer



























                        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.






                        share|improve this answer

























                          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.






                          share|improve this answer














                          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.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Sep 3 '17 at 12:41









                          cherryblossom

                          824425




                          824425










                          answered Apr 1 '17 at 9:31









                          Angelsofty

                          113




                          113






























                              draft saved

                              draft discarded




















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              Михайлов, Христо

                              Центральная группа войск

                              Троллейбус