Answer by Skylinerw for How can I respawn the Ender Dragon?
Minecraft 1.9 and higherTo respawn the Ender Dragon, you must craft 4 End Crystals:Place them around the End portal like so:A respawning sequence will begin, refreshing the obsidian towers and original...
View ArticleAnswer by Skylinerw for Refilling a chest with "special" item
The tag compound holds item data that is not the root id, Damage, Count, or Slot tags. The Damage tag will state the color of the glass.You should also not be using the TileID tag because it is...
View ArticleAnswer by Skylinerw for What is the max enchantment level using commands?
1.13+ players, please see the other answer.1.12−Enchantment levels are saved as a Short, with a minimum of -32,768 and maximum of 32,767./give @p minecraft:stone 1 0 {ench:[{id:16s,lvl:32767s}]}You can...
View ArticleAnswer by Skylinerw for How to execute a command on everyone except me?
You'll want to use the NOT operator with the name parameter:/execute @a[name=!username] ~ ~ ~ /say TestAs well, the type parameter is not used with the @a selector.
View ArticleAnswer by Skylinerw for What is the highest effective enchantment level?
Outdated answer for pre-1.13:The maximum effective enchantment will be dependent per enchantment. The following relies on excerpts taken from the source using 1.9 Mod Coder PackTo restate from the...
View ArticleAnswer by Skylinerw for Does being left handed or right handed affect a mobs...
It is merely a visual change.The LeftHanded bit tag determines whether or not the mob's mainhand is its left or right hand (when set to 1, it is left-handed). The equipment held within HandItems...
View ArticleAnswer by Skylinerw for Why is my item with enchantments not being detected?
The id and lvl tags for enchantments are intended to have the "short" datatype. However, item data generally does not auto-correct itself like it would with entity data.For example, if you summon the...
View ArticleAnswer by Skylinerw for All Minecraft target selector arguments
Via the Minecraft WikiPresent in 1.8x = X coordinate of search originy = Y coordinate of search originz = Z coordinate of search originr = radius maximum in blocksrm = radius minimum in blocksm =...
View ArticleAnswer by Skylinerw for Is it possible to use relative coordinates (~) in...
You cannot use the ~ character in target selectors, meaning you'd need to rely on command syntax and not selector syntax. You cannot use relative coordinates with /testfor as its command syntax does...
View Article