Hey, just wondering if there is a way to tweak animal drops (meat, etc.) using this plugin.
So far it seems that I can tweak the type of animals that spawn in a certain map, but not the drops.
Yeah you can modify the animal drops including meat and all other items. The plugin already does that by default. You just need to modify the AnimalManager.configuration.xml file.
AnimalManager.configuration.xml
<Animals> <Animal Id="1" Name="Deer"> <LootItems> <LootItem Id="514" Name="Raw Venison" Min="1" Max="3" /> <LootItem Id="516" Name="Leather" Min="2" Max="5" /> </LootItems> </Animal> <Animal Id="2" Name="Moose"> <LootItems> <LootItem Id="514" Name="Raw Venison" Min="1" Max="3" /> <LootItem Id="516" Name="Leather" Min="2" Max="5" /> </LootItems> </Animal> <Animal Id="3" Name="Wolf"> <LootItems> <LootItem Id="514" Name="Raw Venison" Min="1" Max="2" /> <LootItem Id="516" Name="Leather" Min="1" Max="3" /> </LootItems> </Animal> <Animal Id="4" Name="Pig"> <LootItems> <LootItem Id="1117" Name="Pork" Min="1" Max="2" /> <LootItem Id="516" Name="Leather" Min="1" Max="3" /> </LootItems> </Animal> <Animal Id="5" Name="Bear"> <LootItems> <LootItem Id="514" Name="Raw Venison" Min="2" Max="4" /> <LootItem Id="516" Name="Leather" Min="3" Max="6" /> </LootItems> </Animal> <Animal Id="6" Name="Cow"> <LootItems> <LootItem Id="1120" Name="Raw Beef" Min="1" Max="2" /> <LootItem Id="462" Name="Milk Box" Min="1" Max="2" /> <LootItem Id="516" Name="Leather" Min="2" Max="5" /> </LootItems> </Animal> <Animal Id="7" Name="Reindeer"> <LootItems> <LootItem Id="514" Name="Raw Venison" Min="1" Max="3" /> <LootItem Id="516" Name="Leather" Min="2" Max="5" /> </LootItems> </Animal> </Animals>