How to use ^^^ coordinate systems for motion nbt (minecraft)





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















Since we can use ^ ^ ^ for relative coordinates with 1.13 like



/execute as Asaf31214 run summon lightning_bolt ^ ^ ^10


(Summons a lightning at 10 blocks from me to the direction I look. By the way, first part is how many blocks to left, second is up and third is how far from you, if you see this function for first time. It is just like cylindrical coordinates at science.)



I tried to write a command that throws a TNT out of me to the direction i want. It was supposed to be:



/summon tnt ^ ^1 ^10 //1 block up and 10 block forward// {Fuse:50,Motion[^0,^1,^10]} 


if I don't use ^ it will throw the TNT to constant x direction. But it gives an error if I use it with new ^ coordinate system.



Can you explain me how to do this? I guess this coordinate system isn't fully useful yet since it is brand new, and this can be impossible for now.










share|improve this question































    0















    Since we can use ^ ^ ^ for relative coordinates with 1.13 like



    /execute as Asaf31214 run summon lightning_bolt ^ ^ ^10


    (Summons a lightning at 10 blocks from me to the direction I look. By the way, first part is how many blocks to left, second is up and third is how far from you, if you see this function for first time. It is just like cylindrical coordinates at science.)



    I tried to write a command that throws a TNT out of me to the direction i want. It was supposed to be:



    /summon tnt ^ ^1 ^10 //1 block up and 10 block forward// {Fuse:50,Motion[^0,^1,^10]} 


    if I don't use ^ it will throw the TNT to constant x direction. But it gives an error if I use it with new ^ coordinate system.



    Can you explain me how to do this? I guess this coordinate system isn't fully useful yet since it is brand new, and this can be impossible for now.










    share|improve this question



























      0












      0








      0








      Since we can use ^ ^ ^ for relative coordinates with 1.13 like



      /execute as Asaf31214 run summon lightning_bolt ^ ^ ^10


      (Summons a lightning at 10 blocks from me to the direction I look. By the way, first part is how many blocks to left, second is up and third is how far from you, if you see this function for first time. It is just like cylindrical coordinates at science.)



      I tried to write a command that throws a TNT out of me to the direction i want. It was supposed to be:



      /summon tnt ^ ^1 ^10 //1 block up and 10 block forward// {Fuse:50,Motion[^0,^1,^10]} 


      if I don't use ^ it will throw the TNT to constant x direction. But it gives an error if I use it with new ^ coordinate system.



      Can you explain me how to do this? I guess this coordinate system isn't fully useful yet since it is brand new, and this can be impossible for now.










      share|improve this question
















      Since we can use ^ ^ ^ for relative coordinates with 1.13 like



      /execute as Asaf31214 run summon lightning_bolt ^ ^ ^10


      (Summons a lightning at 10 blocks from me to the direction I look. By the way, first part is how many blocks to left, second is up and third is how far from you, if you see this function for first time. It is just like cylindrical coordinates at science.)



      I tried to write a command that throws a TNT out of me to the direction i want. It was supposed to be:



      /summon tnt ^ ^1 ^10 //1 block up and 10 block forward// {Fuse:50,Motion[^0,^1,^10]} 


      if I don't use ^ it will throw the TNT to constant x direction. But it gives an error if I use it with new ^ coordinate system.



      Can you explain me how to do this? I guess this coordinate system isn't fully useful yet since it is brand new, and this can be impossible for now.







      minecraft






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 9 mins ago









      MBraedley

      13.3k1786136




      13.3k1786136










      asked Oct 13 '18 at 13:11









      Asaf31214Asaf31214

      32




      32






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Just like you can't use relative coordinates with ~ in NBT, you also can't use relative coordinates with ^. What you can do instead is getting both your and the TNT's position and subtracting it to get a momentum.



          For the position, you can use the NBT tag "Pos", because that can be read with data get. The rest is pretty straightforward, just putting Pos NBT into scoreboards, applying an operation to it and putting it back into NBT, this time Motion.



          Preparation:



          scoreboard objectives add x dummy
          scoreboard objectives add y dummy
          scoreboard objectives add z dummy


          When you want to activate it:



          execute as @p at @s run summon tnt ^ ^ ^1 {Fuse:80}
          execute as @e[type=tnt,tag=toMove] store result score @s x run data get entity @s Pos[0] 10
          execute as @e[type=tnt,tag=toMove] store result score @s y run data get entity @s Pos[1] 10
          execute as @e[type=tnt,tag=toMove] store result score @s z run data get entity @s Pos[2] 10
          execute as @p store result score @s x run data get entity @s Pos[0] 10
          execute as @p store result score @s y run data get entity @s Pos[1] 10
          execute as @p store result score @s z run data get entity @s Pos[2] 10
          scoreboard players operation @e[type=tnt,tag=toMove] x -= @p x
          scoreboard players operation @e[type=tnt,tag=toMove] y -= @p y
          scoreboard players operation @e[type=tnt,tag=toMove] z -= @p z
          execute as @e[type=tnt,tag=toMove] store result entity @s Motion[0] double 0.1 run scoreboard players get @s x
          execute as @e[type=tnt,tag=toMove] store result entity @s Motion[1] double 0.1 run scoreboard players get @s y
          execute as @e[type=tnt,tag=toMove] store result entity @s Motion[2] double 0.1 run scoreboard players get @s z


          This works for multiple TNTs at once, but not yet for multiple players. If you want to use it in multiplayer, you have to replace @p with your selector and probably also use tags for them.






          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',
            autoActivateHeartbeat: false,
            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%2f339637%2fhow-to-use-coordinate-systems-for-motion-nbt-minecraft%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Just like you can't use relative coordinates with ~ in NBT, you also can't use relative coordinates with ^. What you can do instead is getting both your and the TNT's position and subtracting it to get a momentum.



            For the position, you can use the NBT tag "Pos", because that can be read with data get. The rest is pretty straightforward, just putting Pos NBT into scoreboards, applying an operation to it and putting it back into NBT, this time Motion.



            Preparation:



            scoreboard objectives add x dummy
            scoreboard objectives add y dummy
            scoreboard objectives add z dummy


            When you want to activate it:



            execute as @p at @s run summon tnt ^ ^ ^1 {Fuse:80}
            execute as @e[type=tnt,tag=toMove] store result score @s x run data get entity @s Pos[0] 10
            execute as @e[type=tnt,tag=toMove] store result score @s y run data get entity @s Pos[1] 10
            execute as @e[type=tnt,tag=toMove] store result score @s z run data get entity @s Pos[2] 10
            execute as @p store result score @s x run data get entity @s Pos[0] 10
            execute as @p store result score @s y run data get entity @s Pos[1] 10
            execute as @p store result score @s z run data get entity @s Pos[2] 10
            scoreboard players operation @e[type=tnt,tag=toMove] x -= @p x
            scoreboard players operation @e[type=tnt,tag=toMove] y -= @p y
            scoreboard players operation @e[type=tnt,tag=toMove] z -= @p z
            execute as @e[type=tnt,tag=toMove] store result entity @s Motion[0] double 0.1 run scoreboard players get @s x
            execute as @e[type=tnt,tag=toMove] store result entity @s Motion[1] double 0.1 run scoreboard players get @s y
            execute as @e[type=tnt,tag=toMove] store result entity @s Motion[2] double 0.1 run scoreboard players get @s z


            This works for multiple TNTs at once, but not yet for multiple players. If you want to use it in multiplayer, you have to replace @p with your selector and probably also use tags for them.






            share|improve this answer




























              0














              Just like you can't use relative coordinates with ~ in NBT, you also can't use relative coordinates with ^. What you can do instead is getting both your and the TNT's position and subtracting it to get a momentum.



              For the position, you can use the NBT tag "Pos", because that can be read with data get. The rest is pretty straightforward, just putting Pos NBT into scoreboards, applying an operation to it and putting it back into NBT, this time Motion.



              Preparation:



              scoreboard objectives add x dummy
              scoreboard objectives add y dummy
              scoreboard objectives add z dummy


              When you want to activate it:



              execute as @p at @s run summon tnt ^ ^ ^1 {Fuse:80}
              execute as @e[type=tnt,tag=toMove] store result score @s x run data get entity @s Pos[0] 10
              execute as @e[type=tnt,tag=toMove] store result score @s y run data get entity @s Pos[1] 10
              execute as @e[type=tnt,tag=toMove] store result score @s z run data get entity @s Pos[2] 10
              execute as @p store result score @s x run data get entity @s Pos[0] 10
              execute as @p store result score @s y run data get entity @s Pos[1] 10
              execute as @p store result score @s z run data get entity @s Pos[2] 10
              scoreboard players operation @e[type=tnt,tag=toMove] x -= @p x
              scoreboard players operation @e[type=tnt,tag=toMove] y -= @p y
              scoreboard players operation @e[type=tnt,tag=toMove] z -= @p z
              execute as @e[type=tnt,tag=toMove] store result entity @s Motion[0] double 0.1 run scoreboard players get @s x
              execute as @e[type=tnt,tag=toMove] store result entity @s Motion[1] double 0.1 run scoreboard players get @s y
              execute as @e[type=tnt,tag=toMove] store result entity @s Motion[2] double 0.1 run scoreboard players get @s z


              This works for multiple TNTs at once, but not yet for multiple players. If you want to use it in multiplayer, you have to replace @p with your selector and probably also use tags for them.






              share|improve this answer


























                0












                0








                0







                Just like you can't use relative coordinates with ~ in NBT, you also can't use relative coordinates with ^. What you can do instead is getting both your and the TNT's position and subtracting it to get a momentum.



                For the position, you can use the NBT tag "Pos", because that can be read with data get. The rest is pretty straightforward, just putting Pos NBT into scoreboards, applying an operation to it and putting it back into NBT, this time Motion.



                Preparation:



                scoreboard objectives add x dummy
                scoreboard objectives add y dummy
                scoreboard objectives add z dummy


                When you want to activate it:



                execute as @p at @s run summon tnt ^ ^ ^1 {Fuse:80}
                execute as @e[type=tnt,tag=toMove] store result score @s x run data get entity @s Pos[0] 10
                execute as @e[type=tnt,tag=toMove] store result score @s y run data get entity @s Pos[1] 10
                execute as @e[type=tnt,tag=toMove] store result score @s z run data get entity @s Pos[2] 10
                execute as @p store result score @s x run data get entity @s Pos[0] 10
                execute as @p store result score @s y run data get entity @s Pos[1] 10
                execute as @p store result score @s z run data get entity @s Pos[2] 10
                scoreboard players operation @e[type=tnt,tag=toMove] x -= @p x
                scoreboard players operation @e[type=tnt,tag=toMove] y -= @p y
                scoreboard players operation @e[type=tnt,tag=toMove] z -= @p z
                execute as @e[type=tnt,tag=toMove] store result entity @s Motion[0] double 0.1 run scoreboard players get @s x
                execute as @e[type=tnt,tag=toMove] store result entity @s Motion[1] double 0.1 run scoreboard players get @s y
                execute as @e[type=tnt,tag=toMove] store result entity @s Motion[2] double 0.1 run scoreboard players get @s z


                This works for multiple TNTs at once, but not yet for multiple players. If you want to use it in multiplayer, you have to replace @p with your selector and probably also use tags for them.






                share|improve this answer













                Just like you can't use relative coordinates with ~ in NBT, you also can't use relative coordinates with ^. What you can do instead is getting both your and the TNT's position and subtracting it to get a momentum.



                For the position, you can use the NBT tag "Pos", because that can be read with data get. The rest is pretty straightforward, just putting Pos NBT into scoreboards, applying an operation to it and putting it back into NBT, this time Motion.



                Preparation:



                scoreboard objectives add x dummy
                scoreboard objectives add y dummy
                scoreboard objectives add z dummy


                When you want to activate it:



                execute as @p at @s run summon tnt ^ ^ ^1 {Fuse:80}
                execute as @e[type=tnt,tag=toMove] store result score @s x run data get entity @s Pos[0] 10
                execute as @e[type=tnt,tag=toMove] store result score @s y run data get entity @s Pos[1] 10
                execute as @e[type=tnt,tag=toMove] store result score @s z run data get entity @s Pos[2] 10
                execute as @p store result score @s x run data get entity @s Pos[0] 10
                execute as @p store result score @s y run data get entity @s Pos[1] 10
                execute as @p store result score @s z run data get entity @s Pos[2] 10
                scoreboard players operation @e[type=tnt,tag=toMove] x -= @p x
                scoreboard players operation @e[type=tnt,tag=toMove] y -= @p y
                scoreboard players operation @e[type=tnt,tag=toMove] z -= @p z
                execute as @e[type=tnt,tag=toMove] store result entity @s Motion[0] double 0.1 run scoreboard players get @s x
                execute as @e[type=tnt,tag=toMove] store result entity @s Motion[1] double 0.1 run scoreboard players get @s y
                execute as @e[type=tnt,tag=toMove] store result entity @s Motion[2] double 0.1 run scoreboard players get @s z


                This works for multiple TNTs at once, but not yet for multiple players. If you want to use it in multiplayer, you have to replace @p with your selector and probably also use tags for them.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Oct 14 '18 at 15:01









                Fabian RölingFabian Röling

                6,45431340




                6,45431340






























                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f339637%2fhow-to-use-coordinate-systems-for-motion-nbt-minecraft%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

                    Cosme II de Mèdici

                    Hivernacle

                    Eisenach