Advertisement
Guest User

commands

a guest
Sep 16th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. ENCHANTMENTS
  2.  
  3. give @p diamond_sword{Enchantments:[{id:knockback,lvl:10},{id:looting,lvl:10}]} 1
  4. https://www.youtube.com/watch?v=hECdV_w11Xc
  5. https://www.youtube.com/watch?v=FgW90G7XZT0
  6.  
  7.  
  8. /give @p diamond_sword{freeze:2,display:{Lore:["Freeze II"]}}
  9. /scoreboard objectives add attack minecraft.custom:minecraft.damage_dealt
  10.  
  11. Repeating:
  12. execute at @a[nbt={SelectedItem:{tag:{freeze:2}}},scores={attack=1..}] run effect give @e[type=!player,nbt={HurtTime:10s},sort=nearest] slowness 2 2
  13. Chain Conditional:
  14. execute at @a[nbt={SelectedItem:{tag:{freeze:2}}},scores={attack=1..}] at @e[type=!player,nbt={HurtTime:10s},sort=nearest] run particle minecraft:poof ~ ~ ~ .2 1 .2 0 50
  15. scoreboard players set @a attack 0
  16. ======================================================================================================================================
  17. Jump Boots:
  18. Setup:
  19. /give @p diamond_boots{jump:3,display:{Lore:["Jump III"]}}
  20.  
  21. Repeating:
  22. effect give @a[nbt={Inventory:[{Slot:100b,tag:{jump:3}}]}] jump_boost 1 2 true
  23. ======================================================================================================================================
  24. Shock Chestplate:
  25. Setup:
  26. /give @p golden_chestplate{shock:1,display:{Lore:["Shock I"]}}
  27. /scoreboard objectives add hurt minecraft.custom:minecraft.damage_taken
  28.  
  29. Repeating:
  30. execute as @a[nbt={Inventory:[{Slot:102b,tag:{shock:1}}]},scores={hurt=1..}] at @s if entity @e[type=!player,sort=random,limit=1,distance=..3] run effect give @s resistance 1 4 true
  31. Chain Conditional:
  32. execute at @a[nbt={Inventory:[{Slot:102b,tag:{shock:1}}]},scores={hurt=1..}] at @e[type=!player,sort=random,limit=1,distance=..3] run summon minecraft:lightning_bolt ~ ~ ~
  33. scoreboard players set @a hurt 0
  34. ======================================================================================================================================
  35. Excavation Pick:
  36. Setup:
  37. /give @p diamond_pickaxe{excavate:4,display:{Lore:["Excavate IV"]}}
  38. /scoreboard objectives add mine minecraft.used:minecraft.diamond_pickaxe
  39.  
  40. Repeating:
  41. execute at @a[nbt={SelectedItem:{tag:{excavate:4}}},scores={mine=1..}] run fill ~4 ~4 ~4 ~-4 ~-4 ~-4 air destroy
  42. Chain Unconditional:
  43. scoreboard players set @a mine 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement