DB/ItemArmorTotal: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 11: Line 11:
  };
  };


==6.0.1.18179==
struct ItemArmorTotalRec {
  uint32_t m_ID;
  uint32_t m_itemLevel;
  float m_cloth;
  float m_leather;
  float m_mail;
  float m_plate;
};
[[Category:DBC]]
[[Category:DBC]]

Revision as of 20:50, 2 November 2014

New in Cataclysm.

struct ItemArmorTotalEntry // sizeof(0x18)
{
   m_ID; // +0x0, size 0x4, type 0
   m_itemLevel; // +0x4, size 0x4, type 0
   m_cloth; // +0x8, size 0x4, type 3
   m_leather; // +0xC, size 0x4, type 3
   m_mail; // +0x10, size 0x4, type 3
   m_plate; // +0x14, size 0x4, type 3
};

6.0.1.18179

struct ItemArmorTotalRec {
  uint32_t m_ID;
  uint32_t m_itemLevel;
  float m_cloth;
  float m_leather;
  float m_mail;
  float m_plate;
};