It seems wrong to detect the count of A3 A4 materials.
The count will always be detected 0.
When matSno = Act3BountyMatSNO or matSno = Act4BountyMatSNO
The stashCount and backpackCount will always be detected 0.
DB issue?
The count will always be detected 0.
Code:
var stashCount = ZetaDia.Me.Inventory.StashItems.Where(i => i.IsValid && i.ActorSnoId == matSno).Sum(i => i.ItemStackQuantity);
var backpackCount = ZetaDia.Me.Inventory.Backpack.Where(i => i.IsValid && i.ActorSnoId == matSno).Sum(i => i.ItemStackQuantity);
When matSno = Act3BountyMatSNO or matSno = Act4BountyMatSNO
The stashCount and backpackCount will always be detected 0.
DB issue?






