DB/ItemArmorTotal: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
New in Cataclysm.
 
{{Template:Sandbox/VersionRange|min_expansionlevel=4}}
 


  struct ItemArmorTotalEntry // sizeof(0x18)
  struct ItemArmorTotalEntry // sizeof(0x18)
Line 21: Line 23:
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 01:57, 20 July 2016

≥ Cata


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