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!
You could use essentials antibuild to disable the picking up of meats - but that doesn't sound like what you want :/
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.
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.
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 Good find
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.