Looking For A Plugin...

Discussion in 'Archived: Plugin Requests' started by TheCanadianLizard, Apr 29, 2013.

  1. Hello bukkit, i am looking for a plugin that can control the amount of mobs spawn (e.g. if i want a lot of chickens to spawn naturally?) Thanks! :)
     
  2. Offline

    Zarius

    Check the Bukkit.yml file in your server folder for mob limits.

    If you are wanting to modify the current spawns to increase the proportion of chickens compared to other animals you could try OtherDrops (latest beta) - here's an example (goes at the bottom of otherdrops-drops.yml):

    Code:
     # two options: 1 - chance of replacing any animal (cow/chicken/pig/sheep/wolf)
     # with a chicken
      CREATURE_ANIMAL:
        - action: mobspawn
          drop: CHICKEN
          quantity: 1
          chance: 5%
     
    # 2nd option: chance of replacing a chicken spawn with multiple chickens
      CHICKEN:
        - action: mobspawn
          drop: CHICKEN
          quantity: 2-4
          chance: 5%
    
     
    Ultimate_n00b likes this.
  3. Thank you so much, I got this working now! :D
     

Share This Page