• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Items Id #'s

    Discussion in 'Community Developer Forum' started by Sycho, Jul 15, 2015.

    1. Sycho

      Sycho New Member

      Joined:
      Jan 10, 2015
      Messages:
      143
      Likes Received:
      3
      Trophy Points:
      0
      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.
       
    2. Cloud30000

      Cloud30000 New Member

      Joined:
      May 9, 2015
      Messages:
      298
      Likes Received:
      7
      Trophy Points:
      0
      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);
      }
       
    3. y2krazy

      y2krazy Community Developer

      Joined:
      Jun 21, 2011
      Messages:
      2,803
      Likes Received:
      70
      Trophy Points:
      48
    4. Sycho

      Sycho New Member

      Joined:
      Jan 10, 2015
      Messages:
      143
      Likes Received:
      3
      Trophy Points:
      0
      That is exactly what I needed thanks!
       

    Share This Page