Quantcast
Channel: User Skylinerw - Arqade
Browsing latest articles
Browse All 49 View Live

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 Article


Comment 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 Article


Comment 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 Article

Comment 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 Article

Comment by Skylinerw on How to make a Potion Spawner in 1.12.2?

@Zelo101 (they can)

View Article


Comment 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 Article

Comment 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 Article

Comment 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 Article


Comment 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 Article


Comment 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 Article

Comment 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 Article

Comment 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 Article

Comment 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 Article


Comment 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 Article

Answer by Skylinerw for Minecraft: using entitydata, putting items in a...

Key names and values must be separated with a colon; your id tags are missing that colon.You are also using an invalid quotation symbol ”, when it needs to be " instead.Fixed command, removing excess...

View Article


Answer by Skylinerw for testfor a cocoa bean in a player inventory

When testing for pre-existing data, you must specify that data as it's saved. The Damage tag is saved as a short, so you append the numerical value with an "s":/testfor awesomeianman...

View Article

Answer by Skylinerw for why isn't this working? (spawning a chest with...

The BlockEntityTag compound is for items, holding data to apply to the tile entity corresponding to the item.Simply remove that tag:/setblock ~1 ~ ~ chest 1 0 {LootTable:"mctools:chests/loot_table"}

View Article


Answer by Skylinerw for execute /list command

When something runs a command, a "command sender" object is created that has some standard functions dealing with the command sender, such as obtaining position and sending a message to the chat.The...

View Article

Answer by Skylinerw for Run commands as a dead player

@e cannot target dead players. Only the @a selector can (as well as the upcoming @s selector, though is irrelevant when you'd need to use @a first for @s to be functional), and only if the r/dx/dy/dz...

View Article

Answer by Skylinerw for Problem with scoreboard finding named and enchanted item

The error message might not be too useful since, when receiving it via a command block, it only concerns the last iteration of the command. In this case, the last item entity that had its NBT data...

View Article

Answer by Skylinerw for How can I /execute a command on all Endermen on the...

When you use a selector that includes dimension-binding parameters (x/y/z/dx/dy/dz/distance), the dimension of execution will be restricted to the command sender's dimension. The gameLoopFunction...

View Article


Answer by Skylinerw for Testing for specific player a with command block

There is no n parameter. The correct parameter you're looking for is name. The wiki has a list of all valid parameters here.testfor @p[1303,56,518,2,name=JAMES_the_camel]For 1.11-1.12, which removes...

View Article


Answer by Skylinerw for Minecraft command syntax not working

You are missing the coordinates for /summon:/execute @e[type=player,name=nimbusirrus] ~1 ~ ~ summon minecraft:husk ~ ~ ~...

View Article

Answer by Skylinerw for How to detect when a button is pressed 3 times using...

score_<objective>=# is checking for a maximum score, which means score_Tank=4 is looking for a score of 4 or lower. You'll want to use score_<objective>_min=# to check for a minimum score,...

View Article

Answer by Skylinerw for Unrideable boats

You can insert two entities into the boat's Passengers list at the same depth to remove the ability for the player to enter it./summon Boat ~ ~1 ~...

View Article


Answer by Skylinerw for How do I kill mobs using /kill without them dropping...

The DeathLootTable string tag can modify which loot table the mob will use when killed. The "empty" loot table will cause it to drop nothing:1.12 and lower:/entitydata @e[type=Zombie,r=40]...

View Article

Answer by Skylinerw for Testfor specific held item with a certain name and lore?

You are missing a closing curly bracket for the item data:/testfor @p[r=10] {SelectedItemSlot:0,Inventory:[{Slot:0b,tag:{display:{Name:"Ticket",Lore:["This is a punched ticket."]}}}]}However, I...

View Article

Answer by Skylinerw for Is there a command to spawn a baby zombie?

The IsBaby tag will state whether or not the zombie is a baby. Making it 1 will enable the zombie to be a baby./summon Zombie ~ ~1 ~ {IsBaby:1b}

View Article

Answer by Skylinerw for Was the { Levels:n } beacon tag removed/altered in...

The tag was indeed missing and a bug report can be found here. This bug was fixed in 1.14.1-pre1.

View Article



Answer by Skylinerw for Unable to exclude two of the same type in a selector

Update for 1.13+: This now just works. type=!player,type=!villager works exactly as expected.Old answer for 1.12: You cannot have more than one parameter with the same key name. The last one defined...

View Article

Answer by Skylinerw for How to detect if a player has killed a mob? Minecraft...

You can create an objective with the minecraft.killed:minecraft.bat which will automatically increment each time you kill a bat./scoreboard objectives add batKills minecraft.killed:minecraft.bat

View Article

Answer by Skylinerw for How to let player breathe underwater

The Water Breathing effect will prevent players from losing oxygen underwater:/effect USERNAME minecraft:water_breathing 1000000 0 true

View Article

How can I target a random entity of any type using @r?

While @r alone can only target player entities, adding the type parameter allows it to target other entity types:/say @r[type=ArmorStand]But because of this requirement, you'd only be able to target...

View Article


Answer by Skylinerw for How to use an execute command to test for an item/s...

In order to target that player afterwards, you must use CommandStats to track the success of a command.Prerequisites:Objective to hold the return value./scoreboard objectives add AboveChest...

View Article

Image may be NSFW.
Clik here to view.

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 Article

Answer 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 Article


Answer 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 Article


Answer 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 Article

Answer 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 Article

Answer 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 Article

Answer 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 Article


Answer 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 Article

Answer 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

Browsing latest articles
Browse All 49 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>