Comment by Skylinerw on Is there a way I can give players enchanted items and...
PE does not have NBT data. If it did and matched the structure of JE, that would not work because the NBT data for /give already starts in the tag compound.
View ArticleComment by Skylinerw on Testing for specific player a with command block
This will not work because the syntax in the first command is incorrect. The other answer has the correct syntax for checking a name (though it uses pre-1.11 syntax for shorthand coords).
View ArticleComment by Skylinerw on How to change the biome, or at least the grass color,...
I should mention that MCEdit is not a mod or a part of the game at all. It's an external program that edits save data. In that regard it is literally restricted to vanilla; the edits it makes has to...
View ArticleComment by Skylinerw on How to change the biome, or at least the grass color,...
They were asking to change the grass color to that of a specific biome's grass color. You cannot replicate grass color using blocks alone.
View ArticleComment by Skylinerw on How to clear a player's inventory he has two of the...
You mention /modifyitem - are you looking for an answer applicable to 1.12 or 1.13? The answers will be completely different based on the version you're using.
View ArticleComment by Skylinerw on How to detect 1 block then another in the one command?
@EgorHans The /execute command itself was introduced in the 1.8 snapshot 14w07a, while the detect argument was introduced in a later 1.8 snapshot 14w26a
View ArticleComment by Skylinerw on How can I target a random entity of any type using @r?
That doesn't answer my question. I'm asking for any type, not any one from a set of armor stands.
View ArticleComment by Skylinerw on Can I use /execute on a fishing rod hook that's in an...
While their command indicates usage of 1.12, I'll just leave a comment saying that in 1.13 there is an alias for bobbers: minecraft:fishing_bobber.
View ArticleComment by Skylinerw on How to make new players spawn EXACTLY on one block,...
That does indeed work for me. Are using vanilla? If not, you should list what sort of mods or plugins you're using.
View ArticleComment by Skylinerw on Make Fireballs Fly Faster?
@4AC11 For that you'll want to use power, which is direction without air resistance, while direction has air resistance. Just keep in mind that you must define direction for a fireball to exist, though...
View ArticleComment by Skylinerw on I need help with my mincraft commands
"What is does is if its not a nether star it'll get stuck in the final hopper" - wouldn't this mean that the whole system breaks if the player puts too many non-nether-star items in, since all...
View ArticleComment by Skylinerw on does scoreboard condition not work with loot chests?
@FabianRöling The value must explicitly be one of killer_player, killer, or this. Selectors will not work.
View ArticleComment by Skylinerw on Do Command Blocks have character limits?
@Diriector_Doc That's only the case if you edit the command block after placing it, which is the client interacting with the server (and is thus being limited to 32,500 characters). This still works as...
View ArticleAnswer by Skylinerw for How do I place a player skull with /setblock?
Unlike the item variant for skulls, the metadata value for the skull block does not determine type, instead specifying directional facing. The SkullType tag determines the type of skull.Also unlike the...
View ArticleAnswer by Skylinerw for Minecraft /fill to replace all blocks in an area with...
While you've reversed the order of the blocks specified, /fill is not capable of replacing specific blocks if the block you're placing is a tile entity (in this case, a chest). In those cases you can...
View ArticleAnswer by Skylinerw for Minecraft setblock chest cannot use replace
/setblock does not support replacing specific blocks. The /fill command does:/fill x1 y1 z1 x2 y2 z2 block1 0 replace block2 0However, if "block1" is a tile entity, then you cannot replace a specific...
View ArticleAnswer by Skylinerw for How to not kill more than 2 entities using /kill...
The only way without using /scoreboard is to manually target each entity type that you want to kill, being a very long list of commands (~80):/kill @e[type=armor_stand]/kill @e[type=skeleton]/kill...
View ArticleAnswer by Skylinerw for Can I use the {Invisible} tag on an item frame?
The Invisible tag is specifically for armor stands. Item frames cannot be made invisible.You can find a list of NBT data here, which tells you which tags belong to what entities.
View ArticleAnswer by Skylinerw for What's the difference between Frost Walker I and...
From the wiki:If moving on ground (i.e. not falling, jumping, or flying), any still water blocks with air above within a radius of 2 + Level around the block being moved to will be turned into frosted...
View Article