DB/SpellCategory: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
==1.12.1.5875==
struct SpellCategoryRec {
  uint32_t m_ID;
  uint32_t m_flags;
};
==Structure==
==Structure==
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  

Revision as of 22:40, 1 October 2017

1.12.1.5875

struct SpellCategoryRec {
  uint32_t m_ID;
  uint32_t m_flags;
};

Structure

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2 	flags 	Integer 	ID.170 = 1; ID.351 = 2; 

6.0.1.18179

struct SpellCategoryRec {
  uint32_t m_ID;
  uint32_t m_flags;
  uint8_t m_usesPerWeek;
  uint8_t padding_0[3];
  stringref m_name_lang;
  uint32_t m_maxCharges;
  uint32_t m_chargeRecoveryTime;
};