DB/BannedAddOns: Difference between revisions

From wowdev
Jump to navigation Jump to search
Line 9: Line 9:
! width="180 " | Field  
! width="180 " | Field  
! width="80" | Type  
! width="80" | Type  
! width="600" | Notes
! width="200" | Notes
|-  
|-  
|1  || ID  || Integer  ||  
|1  || ID  || Integer  ||  

Revision as of 19:09, 6 September 2017

≥ Wrath

3.0.2.8905-3.3.5.12340-6.0.1.18179

Table

Column Field Type Notes
1 ID Integer
2 NameMD5 char[0x10]
3 VersionMD5 char[0x10]
4 LastModified Integer In unix time
5 Flags Integer

Struct

struct BannedAddOnsRec {
  uint32_t m_ID;
  uint32_t m_nameMD5_[4];
  uint32_t m_versionMD5_[4];
  uint32_t m_lastModified;
  uint32_t m_flags;
};