Kamras
Member
Based on the current Repo
XML Level Items will not register kills and provide EXP.. We should add this to the basecreature.cs to register the kill and give EXP.
Find
and above it add
I tested this myself and confirmed it fixed the issue. If accepted dev please commit
XML Level Items will not register kills and provide EXP.. We should add this to the basecreature.cs to register the kill and give EXP.
Find
Code:
base.OnDamage(amount, from, willKill);
and above it add
Code:
if ( !Summoned && willKill )
{
LevelItemManager.CheckItems( from, this );
}
I tested this myself and confirmed it fixed the issue. If accepted dev please commit