DB/ItemClass: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
(16 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;
  String Block Size.........176
  uint32_t m_flags; // & 1: record is weapon related <code>InitWeaponSubclasses() -> LocateWeaponSubclass()</code>
  {{Template:Type|langstringref}} m_className_lang;
  };


==Structure==
==Structure==
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
  2 Unknown Integer
  2 Subclass? Integer pointing back to an other ID ;)
  3 Unknown Boolean* If boolean only "Weapon" active.
  3 isWeapon? Boolean Only set on id=2 (name="Weapon", subclass=2)
  4 sRefName String
  4-20 Name [[Loc]]
5-12 Localization String*
 
Retrieved from "http://www.sourcepeek.com/wiki/ItemClass.dbc"


==6.0.1.18179==
struct ItemClassRec {
  uint32_t m_classID;
  uint32_t m_flags;
  float m_priceModifier;
  {{Template:Type|langstringref}} m_className_lang;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Alpha]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Revision as of 13:48, 3 October 2017

0.5.3.3368, 1.12.1.5875

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

Structure

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2 	Subclass? 	Integer 	pointing back to an other ID ;)
3 	isWeapon? 	Boolean 	Only set on id=2 (name="Weapon", subclass=2)
4-20 	Name 		Loc

6.0.1.18179

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