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

Items Id #'s

Sycho

New Member
Joined
Jan 10, 2015
Messages
143
Reaction score
3
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);
}
 
Back
Top