ServUO Version
Publish 57
Ultima Expansion
Endless Journey
Was wondering if there was a way to add a bank check to a mob for a reward.
 
Many.. in your case you could check OnBeforeDeath/OnDeath method and drop the bank check from there.

OnDamage mwthod can also be useful in this case.
 
Because BankCheck LootType is Blessed

Try edit ondeath
C#:
public override void OnDeath(Container c)
        {
            base.OnDeath(c);       
            
            c.DropItem(new BankCheck(5000));
            
        }
 
Back