Zarius / Bukkit-OtherBlocks

OtherBlocks (now known as OtherDrops) plugin for Bukkit (dev build: https://www.mediafire.com/?i6ows1g6kus2o0l)
http://dev.bukkit.org/server-mods/otherdrops/
GNU General Public License v3.0
17 stars 17 forks source link

[Feature Request] Configurable mob-mounts on mob spawn. #273

Closed LlmDl closed 11 years ago

LlmDl commented 11 years ago

I'd like to request a configuration option, to spawn mobs onto mounts, in my case I would like to make monsters spawn on undead/skeleton horses.

Example:

ANY_CREATURE:
trigger: mobspawn
chance: 2%  
drop: skeleton 1
world: [myworld, world2] # optional world condition
biome: swamp  # optional biome condition
time: night  # optional time condition
mount: skeletonhorse
charlie1990 commented 11 years ago

Already possible(But not with horses in 1.6.1, they might work in 1.6.2 though)

Heres an example of making baby zombies riding spiders that will only spawn close to the surface

ANY_CREATURE:
    - trigger: MOBSPAWN
      drop: ZOMBIE@BABY^SPIDER
      chance: 5
      height: ">45"
      flag: UNIQUE
LlmDl commented 11 years ago

Oh goodie. I will be testing this and following up here with my results then.

Zarius commented 11 years ago

Thanks for the request, as mentioned it's been implemented but horses wont work until Bukkit adds a proper EntityType for them (in CraftBukkit). I'll close the issue as resolved, please feel free to open another ticket if you have any issues with this feature.

LlmDl commented 11 years ago

http://jd.bukkit.org/dev/apidocs/org/bukkit/entity/EntityType.html

So its entry in there is not enough?