Maps Redstone Device

Naturally Spawning Custom Mobs [Vanilla Commands]

  • 3.1k views 1 today
Progress
100% complete
  • 2
  • 1
  • 9
Lmeagno
Lvl 66High Grandmaster Button Pusher
124
Here is a lovely gaggle of commands you can really play around with.
I feel I will revisit these fine orange blocks soon and improve the possibilities of spawning.

The core of these commands is testing for an already naturally spawning host mob (I used Zombie) that will summon your custom mob relative to its location.

Commands:
pastebin.com/tTchCvxA

More like this

  Have something to say?

The_SlothLord
01/01/2016 4:13 pm
Level 10 : Journeyman Explorer
I need to do this without comparators, droppers, repeaters, etc.  I can only use command blocks.  Also it must be 1.9 compatible.  Can you help me out?
1
anonpmc564276
02/10/2015 8:27 pm
Level 1 : New Miner
[deleted]
1
Lmeagno
02/11/2015 1:21 am
Level 66 : High Grandmaster Button Pusher
/say hi

== GIVE ==
/give @p minecraft:command_block 1 0 {BlockEntityTag:{Command:"/say hi"}}

== ITEM ENTITY ==
/summon Item ~ ~ ~ {Item:{id:minecraft:command_block,Count:1b,tag:{BlockEntityTag:{Command:"/say hi"}}}}

== MINECART ==
/summon MinecartCommandBlock ~ ~1 ~ {Command:"/say hi"}

== BLOCK ==
/setblock ~ ~ ~ minecraft:command_block 0 replace {Command:"/say hi"}

== FALLING SAND ENTITY ==
/summon FallingSand ~ ~ ~ {Time:1,Block:command_block,TileEntityData:{Command:"/say hi"}}
1
anonpmc564276
02/11/2015 3:38 pm
Level 1 : New Miner
[deleted]
1
Lmeagno
02/11/2015 4:03 pm
Level 66 : High Grandmaster Button Pusher
You accidentally copied the title text over the command in the pastebin.

Summon Custom Mob
/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}]}
1
anonpmc564276
02/11/2015 4:27 pm
Level 1 : New Miner
[deleted]
1
Lmeagno
02/11/2015 5:08 pm
Level 66 : High Grandmaster Button Pusher
Those commands pre-1.8.
The old item ids do not work. Instead of "258" put "minecraft:iron_axe", and so on.
Put "{}" instead of "{id:0}
1

Welcome