Minecraft Java Edition – How to Execute a Specific Item Using Minecraft Commands

minecraft-commandsminecraft-java-edition

I want to make a command executing a tripwire hook when it is thrown in the ground you summon a lighting bolt but it seems you can't add NBT tags in an execute command so how to specify the item I want

Best Answer

you cannot do it using execute only you must use scoreboard as in the following:

/scoreboard players set @e[type=item] Lightning 1 {Item:{id:"minecraft:tripwire_hook",Damage:0s,Count:1b,tag:{display:{Name:"Lightninger",Lore:[]}}}}

then

/execute @e[score_Lightning_min=1] ~ ~ ~ summon Lightning_Bolt