How to find entities not being riddenKilling all entities except players and armor stands/kill command not working in 1.9 with entitys with a name too longHow do I add passengers to entity in minecraft 1.9?Ho to teleport an an armor stand to a player who just got a kill, then take it awayHow to select entities by name in Minecraft?How to testfor if an ArmorStand got killed?How to fix Minecraft not reacting to pressed scroll button?can't use type=ArmorStand in minecraft 16w38a, is this a bug or an error on my part?How to not kill more than 2 entities using /kill without using scoreboard in minecraftWhat's wrong with my command?

Scam? Phone call from "Department of Social Security" asking me to call back

Why is the result of ('b'+'a'+ + 'a' + 'a').toLowerCase() 'banana'?

Do I have to cite common CS algorithms?

Help, I cannot decide when to start the story

Why command hierarchy, if the chain of command is standing next to each other?

How to remove ambiguity: "... lives in the city of H, the capital of the province of NS, WHERE the unemployment rate is ..."?

Are those flyers about apartment purchase a scam?

How can I see if the data in a SQL Server table is page-compressed?

Why aren't rockets built with truss structures inside their fuel & oxidizer tanks to increase structural strength?

Modeling the uncertainty of the input parameters

Is it possible to grow new organs through exposure to radioactivity?

How can I find an old paper when the usual methods fail?

Why did IBM make public the PC BIOS source code?

Running code generated in realtime in JavaScript with eval()

Graphs for which a calculus student can reasonably compute the arclength

Website error: "Walmart can’t use this browser"

How would timezones work on a planet 100 times the size of our Earth

Does Nightpack Ambusher's second ability trigger if I cast spells during the end step?

What is the hottest thing in the universe?

Will using a resistor in series with a LED to control its voltage increase the total energy expenditure?

Are differences between uniformly distributed numbers uniformly distributed?

How is являться different from есть and быть

Weird resistor with dots around it

What is the status of this patent?



How to find entities not being ridden


Killing all entities except players and armor stands/kill command not working in 1.9 with entitys with a name too longHow do I add passengers to entity in minecraft 1.9?Ho to teleport an an armor stand to a player who just got a kill, then take it awayHow to select entities by name in Minecraft?How to testfor if an ArmorStand got killed?How to fix Minecraft not reacting to pressed scroll button?can't use type=ArmorStand in minecraft 16w38a, is this a bug or an error on my part?How to not kill more than 2 entities using /kill without using scoreboard in minecraftWhat's wrong with my command?






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








1















So I tried this:



/kill @e[type=ArmorStand,Passengers:[]]


It doesn't do anything. Am I doing this right?










share|improve this question


























  • Short answer is no, you're not doing it right. The passengers information lives in the data tag, which the kill command doesn't have access to. You'll have to tag the entities with the scoreboard before you kill them.

    – MBraedley
    Mar 26 '16 at 11:54











  • Isn't the kill command for killing players?

    – Beminfire
    Mar 26 '16 at 13:03











  • @Beminfire /kill was changed in 1.8 to support target selectors, and @e was also introduced in 1.8 to target non-player entities.

    – Skylinerw
    Mar 26 '16 at 15:04











  • @Skylinerw Oh, I didn't know that. Probably since I stopped playing Minecraft in 1.6.2.

    – Beminfire
    Mar 26 '16 at 15:10

















1















So I tried this:



/kill @e[type=ArmorStand,Passengers:[]]


It doesn't do anything. Am I doing this right?










share|improve this question


























  • Short answer is no, you're not doing it right. The passengers information lives in the data tag, which the kill command doesn't have access to. You'll have to tag the entities with the scoreboard before you kill them.

    – MBraedley
    Mar 26 '16 at 11:54











  • Isn't the kill command for killing players?

    – Beminfire
    Mar 26 '16 at 13:03











  • @Beminfire /kill was changed in 1.8 to support target selectors, and @e was also introduced in 1.8 to target non-player entities.

    – Skylinerw
    Mar 26 '16 at 15:04











  • @Skylinerw Oh, I didn't know that. Probably since I stopped playing Minecraft in 1.6.2.

    – Beminfire
    Mar 26 '16 at 15:10













1












1








1








So I tried this:



/kill @e[type=ArmorStand,Passengers:[]]


It doesn't do anything. Am I doing this right?










share|improve this question
















So I tried this:



/kill @e[type=ArmorStand,Passengers:[]]


It doesn't do anything. Am I doing this right?







minecraft minecraft-commands






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 '16 at 17:50









rivermont - Will B.

2,0853 gold badges20 silver badges44 bronze badges




2,0853 gold badges20 silver badges44 bronze badges










asked Mar 26 '16 at 10:41









Stefan LascuzeanuStefan Lascuzeanu

325 bronze badges




325 bronze badges















  • Short answer is no, you're not doing it right. The passengers information lives in the data tag, which the kill command doesn't have access to. You'll have to tag the entities with the scoreboard before you kill them.

    – MBraedley
    Mar 26 '16 at 11:54











  • Isn't the kill command for killing players?

    – Beminfire
    Mar 26 '16 at 13:03











  • @Beminfire /kill was changed in 1.8 to support target selectors, and @e was also introduced in 1.8 to target non-player entities.

    – Skylinerw
    Mar 26 '16 at 15:04











  • @Skylinerw Oh, I didn't know that. Probably since I stopped playing Minecraft in 1.6.2.

    – Beminfire
    Mar 26 '16 at 15:10

















  • Short answer is no, you're not doing it right. The passengers information lives in the data tag, which the kill command doesn't have access to. You'll have to tag the entities with the scoreboard before you kill them.

    – MBraedley
    Mar 26 '16 at 11:54











  • Isn't the kill command for killing players?

    – Beminfire
    Mar 26 '16 at 13:03











  • @Beminfire /kill was changed in 1.8 to support target selectors, and @e was also introduced in 1.8 to target non-player entities.

    – Skylinerw
    Mar 26 '16 at 15:04











  • @Skylinerw Oh, I didn't know that. Probably since I stopped playing Minecraft in 1.6.2.

    – Beminfire
    Mar 26 '16 at 15:10
















Short answer is no, you're not doing it right. The passengers information lives in the data tag, which the kill command doesn't have access to. You'll have to tag the entities with the scoreboard before you kill them.

– MBraedley
Mar 26 '16 at 11:54





Short answer is no, you're not doing it right. The passengers information lives in the data tag, which the kill command doesn't have access to. You'll have to tag the entities with the scoreboard before you kill them.

– MBraedley
Mar 26 '16 at 11:54













Isn't the kill command for killing players?

– Beminfire
Mar 26 '16 at 13:03





Isn't the kill command for killing players?

– Beminfire
Mar 26 '16 at 13:03













@Beminfire /kill was changed in 1.8 to support target selectors, and @e was also introduced in 1.8 to target non-player entities.

– Skylinerw
Mar 26 '16 at 15:04





@Beminfire /kill was changed in 1.8 to support target selectors, and @e was also introduced in 1.8 to target non-player entities.

– Skylinerw
Mar 26 '16 at 15:04













@Skylinerw Oh, I didn't know that. Probably since I stopped playing Minecraft in 1.6.2.

– Beminfire
Mar 26 '16 at 15:10





@Skylinerw Oh, I didn't know that. Probably since I stopped playing Minecraft in 1.6.2.

– Beminfire
Mar 26 '16 at 15:10










2 Answers
2






active

oldest

votes


















0














Target selectors do not support looking for NBT data. You must mark the entity with a label first and then target the entity using that label:



/scoreboard players tag @e[type=ArmorStand,tag=!NoRiders] add NoRiders Passengers:[]
/kill @e[type=ArmorStand,tag=NoRiders]





share|improve this answer
































    0














    As of Minecraft 1.13, target selectors do support NBT data, meaning that your command, after correcting a few syntax errors and updating it to the new version, would work:



    /kill @e[type=armor_stand,nbt=Passengers:[]]





    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%2f260311%2fhow-to-find-entities-not-being-ridden%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









      0














      Target selectors do not support looking for NBT data. You must mark the entity with a label first and then target the entity using that label:



      /scoreboard players tag @e[type=ArmorStand,tag=!NoRiders] add NoRiders Passengers:[]
      /kill @e[type=ArmorStand,tag=NoRiders]





      share|improve this answer





























        0














        Target selectors do not support looking for NBT data. You must mark the entity with a label first and then target the entity using that label:



        /scoreboard players tag @e[type=ArmorStand,tag=!NoRiders] add NoRiders Passengers:[]
        /kill @e[type=ArmorStand,tag=NoRiders]





        share|improve this answer



























          0












          0








          0







          Target selectors do not support looking for NBT data. You must mark the entity with a label first and then target the entity using that label:



          /scoreboard players tag @e[type=ArmorStand,tag=!NoRiders] add NoRiders Passengers:[]
          /kill @e[type=ArmorStand,tag=NoRiders]





          share|improve this answer













          Target selectors do not support looking for NBT data. You must mark the entity with a label first and then target the entity using that label:



          /scoreboard players tag @e[type=ArmorStand,tag=!NoRiders] add NoRiders Passengers:[]
          /kill @e[type=ArmorStand,tag=NoRiders]






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 26 '16 at 15:03









          SkylinerwSkylinerw

          11.9k1 gold badge16 silver badges33 bronze badges




          11.9k1 gold badge16 silver badges33 bronze badges


























              0














              As of Minecraft 1.13, target selectors do support NBT data, meaning that your command, after correcting a few syntax errors and updating it to the new version, would work:



              /kill @e[type=armor_stand,nbt=Passengers:[]]





              share|improve this answer





























                0














                As of Minecraft 1.13, target selectors do support NBT data, meaning that your command, after correcting a few syntax errors and updating it to the new version, would work:



                /kill @e[type=armor_stand,nbt=Passengers:[]]





                share|improve this answer



























                  0












                  0








                  0







                  As of Minecraft 1.13, target selectors do support NBT data, meaning that your command, after correcting a few syntax errors and updating it to the new version, would work:



                  /kill @e[type=armor_stand,nbt=Passengers:[]]





                  share|improve this answer













                  As of Minecraft 1.13, target selectors do support NBT data, meaning that your command, after correcting a few syntax errors and updating it to the new version, would work:



                  /kill @e[type=armor_stand,nbt=Passengers:[]]






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 26 mins ago









                  ppperypppery

                  1,5381 gold badge8 silver badges20 bronze badges




                  1,5381 gold badge8 silver badges20 bronze badges






























                      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%2f260311%2fhow-to-find-entities-not-being-ridden%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

                      ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

                      Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

                      19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу