Advertisement
TeamWooloo

Command Block Tricks

Oct 6th, 2015
29,963
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. Command #1:
  2.  
  3. \\ FIREBALL SHOOTING SNOWBALLS :D!
  4. /execute @e[type=Snowball] ~ ~ ~ summon Fireball ~ ~ ~ {direction:[]}
  5.  
  6. \\ Alternatively you can this to make bows shoot Fireballs!
  7. /execute @e[type=Arrow] ~ ~ ~ summon Fireball ~ ~ ~ {direction:[]}
  8.  
  9. \\ Different ExplsionPowers! (Fill in any number!)
  10. /execute @e[type=Snowball] ~ ~ ~ summon Fireball ~ ~ ~ {direction:[],ExplosionPower:1}
  11. /execute @e[type=Snowball] ~ ~ ~ summon Fireball ~ ~ ~ {direction:[],ExplosionPower:5}
  12. /execute @e[type=Snowball] ~ ~ ~ summon Fireball ~ ~ ~ {direction:[],ExplosionPower:10}
  13.  
  14.  
  15. Command #2:
  16.  
  17. \\ ABSTRACT ART <3!
  18. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ gold_block
  19. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ diamond_block
  20. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ stone
  21. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ dirt
  22. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ grass
  23. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ wool 1
  24. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ wool 5
  25. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ wool 9
  26. /execute @e[type=Item] ~ ~ ~ setblock ~ ~ ~ wool 11
  27.  
  28. Command #3:
  29.  
  30. \\ SHEEP SHOOTER \ VILLAGER SHOOTER?!??!
  31.  
  32. Please do this command first to kill all existing arrows before activating the command, or it might
  33. go wrong:
  34. /kill @e[type=Arrow]
  35.  
  36. Giving the bow:
  37. /give @p bow 1 0 {ench:[{id:49,lvl:20}]}
  38.  
  39. Now on a clock:
  40. /execute @e[type=Arrow] ~ ~ ~ summon Sheep
  41. /execute @e[type=Arrow] ~ ~ ~ summon Villager
  42. /execute @e[type=Arrow] ~ ~ ~ summon Cow
  43. /execute @e[type=Arrow] ~ ~ ~ summon Rabbit
  44.  
  45. Command #4:
  46.  
  47. \\ ALL MOBS INTO CREEPERS ! >:D!
  48.  
  49. /execute @a ~ ~ ~ /execute @e[type=Sheep,r=5] ~ ~ ~ summon Creeper ~ ~ ~ {Fuse:0}
  50. /execute @a ~ ~ ~ /execute @e[type=Sheep,r=7] ~ ~ ~ summon Creeper ~ ~ ~ {Fuse:0}
  51. /execute @a ~ ~ ~ /execute @e[type=Sheep,r=3] ~ ~ ~ summon Creeper ~ ~ ~ {Fuse:0}
  52. /execute @a ~ ~ ~ /execute @e[type=Bat,r=5] ~ ~ ~ summon Creeper ~ ~ ~ {Fuse:0}
  53. /execute @a ~ ~ ~ /execute @e[type=Bat,r=4] ~ ~ ~ summon Creeper ~ ~ ~ {Fuse:0}
  54. /execute @a ~ ~ ~ /execute @e[type=Cow,r=6] ~ ~ ~ summon Creeper ~ ~ ~ {Fuse:0}
  55. /execute @a ~ ~ ~ /execute @e[type=Cow,r=4] ~ ~ ~ summon Creeper ~ ~ ~ {Fuse:0}
  56.  
  57. Command #5:
  58.  
  59. \\ PARTICLE TRAILS!
  60.  
  61. /execute @a ~ ~ ~ particle reddust ~ ~ ~ 0.2 0.2 0.2 0.2 20
  62. /execute @a ~ ~ ~ particle portal ~ ~ ~ 0.2 0.2 0.2 0.2 20
  63. /execute @a ~ ~ ~ particle enchantmenttable ~ ~ ~ 0.2 0.2 0.2 0.2 20
  64. /execute @a ~ ~ ~ particle barrier ~ ~ ~ 0.2 0.2 0.2 0.2 20
  65. /execute @a ~ ~ ~ particle heart ~ ~ ~ 0.2 0.2 0.2 0.2 20
  66.  
  67. Command Block Clock:
  68.  
  69. /setblock ~ ~1 ~ air
  70. /setblock ~ ~-1 ~ redstone_block
  71.  
  72. ---------
  73.  
  74. And that is it :D!!
  75.  
  76. We really hope you have as much fun as we had with these cool little commands :D!
  77.  
  78. Good luck, and have fun!!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement