As of 15w50a, hopper blocks support the "LootTable" and "LootTableSeed" tags. Not to be confused with hopper minecarts, which already had the tags from previous snapshots.
Is there no way to detect when an entity is riding another entity? {RootVehicle:{}} is only for players, so a command like:
/scoreboard players tag @e add car {RootVehicle:{Entity:{id:Zombie}}}
wouldn't add the tag 'car' to the cow in the stack summoned via:
/summon Zombie ~ ~ ~ {Passengers:[{id:Cow}]}
Is there no way to detect when an entity is riding another entity? {RootVehicle:{}} is only for players, so a command like:
/scoreboard players tag @e add car {RootVehicle:{Entity:{id:Zombie}}}
wouldn't add the tag 'car' to the cow in the stack summoned via:
/summon Zombie ~ ~ ~ {Passengers:[{id:Cow}]}
That's correct and an unfortunate side-effect of the change. With "Riding" it was impossible to see if an entity was being ridden by something but could check if it was riding something else, while with "Passengers" it's the opposite.
The deterministic seed for grabbing data from the loot table. Used in vanilla survival to replicate chest content in new worlds with same seeds. Must not be 0.
The deterministic seed for grabbing data from the loot table. Used in vanilla survival to replicate chest content in new worlds with same seeds. Must not be 0.
New "PaymentItem" compound in 15w47a. Stores the item the player placed into the beacon.
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
The "PaymentItem" compound on beacons has been removed in 15w49a.
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
As of 15w50a, hopper blocks support the "LootTable" and "LootTableSeed" tags. Not to be confused with hopper minecarts, which already had the tags from previous snapshots.
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
Added section for signs that I had neglected. Change was made in 15w49a:
"Text1/2/3/4" (string)
In order for a sign to accept text, all 4 tags ("Text1", "Text2", "Text3", and "Text4") must exist.
EDIT: Source for this change, though is subject to further change: https://bugs.mojang.com/browse/MC-87143?focusedCommentId=268493&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-268493
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
Then how to make an empty sign? Is it this?: Probebly it is.
Forgot to add a change from 15w51b for armor stands:
Entity: ArmorStand
"DisabledSlots" (integer)
The original values have changed in nature (see MC-94252 for details):
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
Is there no way to detect when an entity is riding another entity? {RootVehicle:{}} is only for players, so a command like:
/scoreboard players tag @e add car {RootVehicle:{Entity:{id:Zombie}}}
wouldn't add the tag 'car' to the cow in the stack summoned via:
/summon Zombie ~ ~ ~ {Passengers:[{id:Cow}]}
That's correct and an unfortunate side-effect of the change. With "Riding" it was impossible to see if an entity was being ridden by something but could check if it was riding something else, while with "Passengers" it's the opposite.
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
Changes from 1.9 pre-release 2:
Entity: FallingSand
"Time" (integer)
The original "Time" tag has changed from a byte to an integer as a fix for MC-35127.
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
/testfor cannot output this. .
What is the value of DisabledSlots who lock all slot of the armorstand but not the remove (take) interaction on the head of the armorstand ?
And I don't really understand how the new DisabledSlots tag work. :/
Just use MCStacker.
Updated to 1.9.1, where dispensers and droppers now use loot tables:
Tile: Dispenser
"LootTable" (string)
Determines which loot table will be used when the dispenser is opened or destroyed.
"LootTableSeed" (long)
The deterministic seed for grabbing data from the loot table. Used in vanilla survival to replicate chest content in new worlds with same seeds. Must not be 0.
Tile: Dropper
"LootTable" (string)
Determines which loot table will be used when the dropper is opened or destroyed.
"LootTableSeed" (long)
The deterministic seed for grabbing data from the loot table. Used in vanilla survival to replicate chest content in new worlds with same seeds. Must not be 0.
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
More posting this as an FYI as I figured it out while I was writing the question.
Was struggling to get this command to work
Can't seem to get it to detect specific potions, detect 0 items.
says I have 2 items.
Turns out you have to write it as:
Any Idea how to make it so the {Age:} on the Ender_Gateway doesnt move? I would like to have a constant beam.
You will have to constantly set the value back to 0 (or 1 if it flickers) using /blockdata:
Minecraft-things: http://skylinerw.com
More Minecraft-things: https://sourceblock.net
Guides for command-related features (eventually moving to Source Block): https://github.com/skylinerw/guides
I primarily hang out in the /r/MinecraftCommands discord, where there's a lot of people that help with commands: https://discord.gg/QAFXFtZ
Their corresponding subreddit: https://www.reddit.com/r/MinecraftCommands/
How do you make villagers sell/buy spawn eggs in 1.9?
I need help!
Want new mobs in vanilla minecraft? Can't be bothered with mods? To long a wait for the next update?
click here to get more stuff in vanilla
Link RemovedImage RemovedLink RemovedImage Removed
Suggesting to make this a pinned post in the Command Block discussion.
Servers Rules|Support Forum Rules|Show Your Creation Rules|Off Topic Rules
most epic intro evaaaaa
Well I am trying to update a old setblock command put this command doen't seems to work
this is on of the command that you posted. and I would think it would make a skeleton spawer but it gives me a normal pig spawner.
Command I need to update:
setblock -20 14 28 52 0 replace {EntityId:XPOrb,SpawnPotentials:[{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,29.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,29.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,29.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,29.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,31.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,31.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,31.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,31.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,33.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,33.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,33.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,33.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,35.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,35.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,35.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,35.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,37.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,37.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,37.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,37.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,39.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,39.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,39.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,39.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,41.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,41.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,41.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,41.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-18.5,18.3,43.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-20.5,18.3,43.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-22.5,18.3,43.5]}},{Type:XPOrb,Weight:1,Properties:{Age:5999,Pos:[-24.5,18.3,43.5]}},],SpawnCount:1,SpawnRange:1,Delay:0,MaxNearbyEntities:32000,RequiredPlayerRange:32000,MinSpawnDelay:100,MaxSpawnDelay:250}