Sycho New Member Joined Jan 10, 2015 Messages 143 Reaction score 3 Jul 15, 2015 #1 Currently http://xivdb.com is down...is there a way to find out the item ID's without using this site? Was thinking maybe getting the ID's of the items in current inventory.
Currently http://xivdb.com is down...is there a way to find out the item ID's without using this site? Was thinking maybe getting the ID's of the items in current inventory.
C Cloud30000 New Member Joined May 9, 2015 Messages 298 Reaction score 7 Jul 15, 2015 #2 You can use something similiar to this for your current inventory: Code: ClearLog(); foreach (BagSlot slot in ff14bot.Managers.InventoryManager.FilledSlots.Where(x => x.BagId == InventoryBagId.Bag1 || x.BagId == InventoryBagId.Bag2 || x.BagId == InventoryBagId.Bag3 || x.BagId == InventoryBagId.Bag4)) { Log("Name: {0} EquipmentCatagory: {1} ItemRole: {2} ItemId: {3}",slot.Name.PadRight(40,' '),slot.Item.EquipmentCatagory.ToString().PadRight(16,' '),slot.Item.ItemRole.ToString().PadRight(4,' '),slot.Item.Id); }
You can use something similiar to this for your current inventory: Code: ClearLog(); foreach (BagSlot slot in ff14bot.Managers.InventoryManager.FilledSlots.Where(x => x.BagId == InventoryBagId.Bag1 || x.BagId == InventoryBagId.Bag2 || x.BagId == InventoryBagId.Bag3 || x.BagId == InventoryBagId.Bag4)) { Log("Name: {0} EquipmentCatagory: {1} ItemRole: {2} ItemId: {3}",slot.Name.PadRight(40,' '),slot.Item.EquipmentCatagory.ToString().PadRight(16,' '),slot.Item.ItemRole.ToString().PadRight(4,' '),slot.Item.Id); }
y2krazy Community Developer Joined Jun 21, 2011 Messages 2,803 Reaction score 70 Jul 15, 2015 #3 http://www.garlandtools.org/db/ works for things you don't have, similar to XIVDB.
Sycho New Member Joined Jan 10, 2015 Messages 143 Reaction score 3 Jul 15, 2015 #4 That is exactly what I needed thanks!