Is there a way to enable the Minor/Major/Legendary Artifact drop system on servUO? Is it in Loot.cs? If so, what do I need to edit?
----------EDIT

Er....Actually it seems like the loot is all screwed up. Went into shame and nothing is dropping items. All stones and gold. Ettins don't even have items..What the hell is going on? Is this all based off of Loot.cs?
 
Last edited:
Might want to check the BaseRunicTool.cs for ItemPower variable. This is probably one of my least favorite things to dig through is following the item generation from the mobiles GenerateLoot to final loot generation completion. But between Loot.cs LootPack.cs and BaseRunicTool.cs you should be able to find what your looking for by following the ItemPower Variable.

*edit*
I am gonna guess that its got some if(in region) do new loot system. Might be as simple as disabling the the region check and commenting out the old loot system to force everything to drop as new loot system.
 
Back