Advertisement
Guest User

[Minecraft Commands] Naturally Spawning Custom Mobs

a guest
Apr 9th, 2014
926
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Custom Mob Command
  2. /summon <Mob> ~ ~ ~ {DropChances:[1.0f,1.0f,1.0f,1.0f,1.0f],Equipment:[{id:<hand>},{id:<feet>},{id:<legs>},{id:<torso>},{id:<head>}]}
  3.  
  4. Finding A Host Mob (Can Be Any Mob and Radius)
  5. /execute @a ~ ~ ~ /testfor @e[type=Zombie,r=25]
  6.  
  7. /execute @a ~ ~ ~ /scoreboard players set @e[type=Zombie,r=25] Rare 1
  8.  
  9. Summon Custom Mob
  10. /execute @e[score_Rare_min=1] ~ ~ ~ /summon Skeleton ~ ~ ~ {DropChances:[1.0f,1.0f,1.0f,1.0f,1.0f],Equipment:[{id:258,Count:1},{id:301},{id:0},{id:0},{id:0}]}
  11.  
  12. Kill Host Mob (Despawn In Void)
  13. /tp @e[score_Rare_min=1] ~ -200 ~
  14.  
  15. Reset Scoreboard
  16. /scoreboard players reset * Rare
  17.  
  18. (Last optional command that was not shown in video. Sorry.)
  19. Re-Summon Host Mob
  20. /execute @e[score_Rare_min=1] ~ ~ ~ /summon Zombie ~ ~ ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement