Remove Mob Drops

Discussion in 'Archived: Plugin Requests' started by jazzman170, Jan 5, 2013.

  1. Offline

    jazzman170

    Can somebody please create a simple plugin that will remove the mob drops of selected mobs in the .yml config?

    I have another plugin to control what drops for each mob at any percent i want, but i need a plugin that disables the default drops of specified mobs.

    An example of a config would be something like:

    _________________________________________
    ##Below mob names will NOT drop. Use another plugin for drop control.

    Cow
    Pig
    Pig_Zombie
    __________________________________________

    I really hope somebody can do this, i had a custom plugin made for me to make crops grow slower to make the food economy actualy usefull, now i need to control the meat aspect of the food area. Its too easy to make meat farms, so i need to get this plugin made so i can use my other plugin (ecocreatures) to control how much meat drops at whatever % i choose!

    Thanks in advance!
     
  2. Offline

    MichaelVelsion

    You could use essentials antibuild to disable the picking up of meats - but that doesn't sound like what you want :/
     
  3. Offline

    jazzman170

    no haha, but thanks for the suggestion, those are always welcomed!

    Bumping up ^_^

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 8, 2016
  4. Offline

    jazzman170

    Bump :3
     
  5. Offline

    DJSanderrr

    What does Bump actuly means :$$$ sorry i am dutch soo..

    REPLY PLEASE
     
  6. Offline

    jazzman170

    Its just a saying so that your posting gets "bumped" or moved back up towards the top of the entire thread, because people look at the topics up at the top of a thread more often then not.
     
  7. Offline

    DJSanderrr

    Ah okay, thank you
     
  8. Offline

    jg16jg

  9. Offline

    jazzman170

    that does look like it probly does what i want it to do, but that ones a big plugin, it may be a bit hungry haveing to check all those things when something happends.

    I would prefer a more simple one made to do what im wanting, and just that, nothing extra. I have 68 plugins right now already so thats why im looking for simplistic plugins haha. Tyvm tho :D Good find :)
     
  10. Offline

    jg16jg

    jazzman170
    NoLagg can set max drops for all things within a chunk.
     
  11. Offline

    jazzman170

    nope that wouldnt help either D: But thanks again for the suggestion :)
     
  12. Offline

    jazzman170

    Bump, anyone can make this? <3
     
  13. Offline

    Zarius

    Try OtherDrops:

    Code:
      COW:
        - drop: NOTHING
     
      PIG:
        - drop: NOTHING
     
      # etc...
    
    OtherDrops may look like a big complicated plugin but by default it doesn't change anything - just runs whatever config you give it. In this case it will just keep an eye on the entity death event (which any plugin to stop mob drops has to do, no matter how simple) and check against available configs (in this case: 1 check only) then cancels the drop.

    There are a large number of other conditions and actions you can look into on the BukkitDev page however if you don't use them they don't require any processing.
     

Share This Page