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.
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); }