Quote:
Originally Posted by shanxou
before and after to have changed, the drop (item and money and cps) not work
|
That's strange!
But it's easy to fix anyway!
Open : Game/Entity.cs
Search for this code :
Code:
this.Owner.QualifierGroup.End(this.Owner);
See down it with 2-3-4 lines .. You will see else code will be like this:
Code:
if (this.Owner.QualifierGroup != null)
{
this.Owner.QualifierGroup.End(this.Owner);
}
}
else
{
After the last { in the code ^ .. Paste this code :
Code:
if (!this.Companion)
{
try
{
if ((this.MonsterInfo != null) && (killer != null))
{
this.MonsterInfo.Drop(killer);
}
}
catch{}
}
Save .. F6 then test!
I hope you understand where exactly i mean!
If you can't do it, upload Entity.cs and i will edit it for you!