Dan(Tasanar)

Moderator
Searched here and on RunUO before I posted

I want slayers to spawn all types in pre aos not just Silver.

Changed this code in LootPack.cs from Silver to all types but still only Silver drops. I looked in BaseWeapon, Loot, and SlayerTypes.

Code:
if (5 > Utility.Random(100))
                            {
                                weapon.Slayer = SlayerGroup.GetLootSlayerType(from.GetType());
                            }
 
Back