Minecraft – testing if PrimedTnt exists in a block

minecraft-commandsminecraft-java-edition

I am trying to make better looking explosions in minecraft. I use this command to detect PrimedTnt where the explosion happens (x=-272 y=58 z=-1844)

testfor @e[type=PrimedTnt] [x=-272 y=58 z=-1844]

But it gives me this error message:

[20:48:37] Data tag parsing failed: Invalid tag encountered, expected '{' as first char.

Why does this happen? Also, what can I do about it?

Best Answer

When using selectors, all of the arguments go between the same pair of square brackets and are separated by commas. What you wanted to do is probably this:

testfor @e[type=PrimedTnt,x=-272,y=58,z=-1844]

You're getting the error message because you've made [x=-272 y=58 z=-1844] an argument of its own, not part of the selector. As it happens, the second argument for testfor is NBT data. The correct syntax to specify NBT data would, as the answer above says, be {x:-272,y:58,z:-1844}.

HOWEVER no entity has an "x" int, a "y" int, and a "z" int in it's data. Although it's the correct syntax and won't cause an error, it will never match an entity. The correct tags for specifying location with the NBT argument would be this:

testfor @e[type=PrimedTnt] {Pos:[-271.5,58.5,-1843.5]}

The chances are you didn't want to do that though, as it'd test only for that very specific point in space and nothing else. The solution is the first command I gave, where all of the arguments are in the square brackets.