Advertisement
Guest User

Floor craft

a guest
Mar 28th, 2021
2,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. Repeat:
  2. execute at @e[type=minecraft:item,nbt={Item:{id:"minecraft:cactus"}}] as @e[type=minecraft:item,nbt={Item:{id:"minecraft:stone_axe"}},distance=..1] run summon armor_stand ~ ~ ~ {Tags:["CraftHead_test"],Invisible:1}
  3.  
  4. Chain:
  5. execute at @e[tag=CraftHead_test] run kill @e[nbt={Item:{id:"minecraft:cactus"}},distance=..1]
  6.  
  7. Chain:
  8. execute at @e[tag=CraftHead_test] run kill @e[nbt={Item:{id:"minecraft:stone_axe"}},distance=..1]
  9.  
  10. Chain:
  11. execute at @e[tag=CraftHead_test] run setblock ~ ~ ~ chest[facing=north]{CustomName:"\"Subscribe\"",Items:[{Slot:13,id:netherite_axe,Count:1,tag:{Enchantments:[{id:sharpness,lvl:10}]}}]} keep
  12.  
  13. Chain:
  14. execute at @e[tag=CraftHead_test] run playsound minecraft:block.anvil.land master @a[distance=..6] ~ ~ ~
  15.  
  16. Chain:
  17. execute at @e[tag=CraftHead_test] run particle cloud ~ ~ ~ 1 1 1 0 5
  18.  
  19. Chain:
  20. kill @e[tag=CraftHead_test,type=minecraft:armor_stand]
  21.  
  22.  
  23. With NBT Tags:
  24.  
  25. Repeat:
  26. execute at @e[type=minecraft:item,nbt={Item:{tag:{test:1}}}] as @e[type=minecraft:item,nbt={Item:{tag:{test:2}}},distance=..1] run summon armor_stand ~ ~ ~ {Tags:["CraftHead_test2"],Invisible:1}
  27.  
  28. Chain:
  29. execute at @e[tag=CraftHead_test2] run kill @e[nbt={Item:{tag:{test:1}}},distance=..1]
  30.  
  31. Chain:
  32. execute at @e[tag=CraftHead_test2] run kill @e[nbt={Item:{tag:{test:2}}},distance=..1]
  33.  
  34. Chain:
  35. execute at @e[tag=CraftHead_test2] run setblock ~ ~ ~ chest[facing=north]{CustomName:"\"Subscribe\"",Items:[{Slot:13,id:netherite_shovel,Count:1,tag:{Enchantments:[{id:efficiency,lvl:10}]}}]} keep
  36.  
  37. Chain:
  38. execute at @e[tag=CraftHead_test2] run playsound minecraft:block.anvil.land master @a[distance=..6] ~ ~ ~
  39.  
  40. Chain:
  41. execute at @e[tag=CraftHead_test2] run particle cloud ~ ~ ~ 1 1 1 0 5
  42.  
  43. Chain:
  44. kill @e[tag=CraftHead_test2,type=minecraft:armor_stand]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement