Powersource is an LOTF source correct? Well if it is I may be of assistance.
So this is actually pretty simple.
Start by opening the entities.cs
Then search for the serious of lines that look like...
Code:
if (Other.ChanceSuccess([COLOR="Red"]1[/COLOR]))
{
string Item = "1060100-0-0-0-0-0";
DroppedItem item = DroppedItems.DropItem(Item, (uint)(PosX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(PosY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)Map, MoneyDrops);
World.ItemDrops(item);
}
Changing the red number will effect the drop rate. You can change to decimals if you wish too. The lower the number the less the rate, the higher, the more drop.
Also, if you wish to have it where specifc monsters drop the item. Simply add...
Code:
if (Name == "[COLOR="Red"]MOB[/COLOR]")
{
Change the red to the mob you want.
Pretty simple huh?