DB/ItemClass: Difference between revisions

From wowdev
Jump to navigation Jump to search
(New page: ==Header Info == Records....................16 Fields.....................12 Record Size................48 String Block Size.........176 ==Structure== '''Column Field Type Notes'...)
 
mNo edit summary
 
(18 intermediate revisions by 6 users not shown)
Line 1: Line 1:
==Header Info ==
==0.5.3.3368, 1.12.1.5875==
Records....................16
  struct ItemClassRec {
  Fields.....................12
  uint32_t m_classID;
Record Size................48
  uint32_t m_subclassMapID; // points back to another ID?
  String Block Size.........176
  uint32_t m_flags;        // & 1: record is weapon related <code>InitWeaponSubclasses() -> LocateWeaponSubclass()</code>
  {{Template:Type|langstringref}} m_className_lang;
  };


==Structure==
==6.0.1.18179==
  '''Column Field Type Notes'''
  struct ItemClassRec {
  1 ID Integer
  uint32_t m_classID;
2 Unknown Integer
  uint32_t m_flags;
3 Unknown Boolean* If boolean only "Weapon" active.
  float m_priceModifier;
4 sRefName String
  {{Template:Type|langstringref}} m_className_lang;
5-12 Localization String*
  };
 
[[Category:DBC]]
Retrieved from "http://www.sourcepeek.com/wiki/ItemClass.dbc"
[[Category:DBC_Alpha]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 19:47, 30 December 2019

0.5.3.3368, 1.12.1.5875

struct ItemClassRec {
  uint32_t m_classID;
  uint32_t m_subclassMapID; // points back to another ID?
  uint32_t m_flags;         // & 1: record is weapon related InitWeaponSubclasses() -> LocateWeaponSubclass()
  langstringref m_className_lang;
};

6.0.1.18179

struct ItemClassRec {
  uint32_t m_classID;
  uint32_t m_flags;
  float m_priceModifier;
  langstringref m_className_lang;
};