How can I detect if a player has a specific item with a specific datavalue in their inventory?
Let's say I want to track a group of players to see which one of them (if any) have a specific block type in their inventory that's of a specific datavalue; for instance Red Wool (minecraft:wool with a data value of 14). I already know how to detect if a player has any wool in their inventory:/testfor @a {Inventory:[{id:"minecraft:wool"}]}.
However, this doesn't discriminate between the various colours. It'll find anyone with any colour wool, whereas I want to find only players with red wool.
I've tried modifying the data tag to also include a data value, such as/testfor @a {Inventory:[{id:"minecraft:wool",data:14}]}
but this results in unmatched NBT tags and the error message <Player> did not match the required data structure. Obviously it's because data (or Data, damage, dataID, etc.) isn't the name of the NBT tag, or that the structure is wrong.
I realize I can accomplish this using the /clear command, but that's a bit clunky when running on a 20Hz /fill clock. How can I filter out specific data values when using the /testfor or /scoreboard players commands?
Best Answer
The simplest solution is to update to 1.13, which implemented "The Flattening". For every block that had multiple variations based on the data value, a new block has been introduced for each variation with its own block ID (name). This effects the coloured blocks in particular, but there's a number of other block types (wood blocks, for instance) that are also affected. Now all you have to do is:
/tag @a[nbt={Inventory:[{id:red_wool}]}] add CarryingRed
Additionally, 1.13 introduced the idea of tags for groups of blocks or items (or functions) that are related. If you want to tag someone (in the sense of the former scoreboard tag functionality like above), all you have to do is select the wool tag in the selector:
/tag @a[nbt={Inventory:[{id:#wool}]}] add CarryingWool
Note the #wool, which will match any item that is listed in the wool tag, which by default includes all colours of wool.
Pictures about "How can I detect if a player has a specific item with a specific datavalue in their inventory?"



Check Player Inventories for 'Named' Items *Kind Of* / Buff Players Who Have Certain Items!
More answers regarding how can I detect if a player has a specific item with a specific datavalue in their inventory?
Answer 2
You can detect item without actually clearing using /clear command.
Syntax for /clear command is following :
/clear [player] [item] [data] [maxCount] [dataTag]
If you set maxCount to 0, command will output success only if player has that specified item.
Answer 3
/scoreboard players set @a <objective> <score> {Inventory:[{id:block ID,Damage:Data Value s}]}
Sources: Stack Exchange - This article follows the attribution requirements of Stack Exchange and is licensed under CC BY-SA 3.0.
Images: Ron Lach, Ron Lach, Elijah O'Donnell, Julia Avamotive
