What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

It seems wrong to detect the count of A3 A4 materials.

austin909

Member
Joined
Apr 19, 2014
Messages
253
Reaction score
3
It seems wrong to detect the count of A3 A4 materials.
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?
 
Back
Top