DB/ChatChannels: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
Line 8: Line 8:
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
  2 Unknown Integer Something to do with linking between zones? (Patch 1.9, 1.11)  
  2 flags Integer Something to do with linking between zones? (Patch 1.9, 1.11)  
  ''3 Unknown NULL ''
  3 factionGroup Integer
  4-20 Name&Pattern String + [[Loc]]
  4-20 Name String + [[Loc]]
  21-37 Name String + [[Loc]]  
  21-37 shortcut String + [[Loc]]  
 
struct ChatChannelsEntry // sizeof(0x14)
{
    m_ID; // +0x0, size 0x4, type 0
    m_flags; // +0x4, size 0x4, type 0
    m_factionGroup; // +0x8, size 0x4, type 0
    m_name_lang; // +0xC, size 0x4, type 2
    m_shortcut_lang; // +0x10, size 0x4, type 2
};
--[[User:Schlumpf|schlumpf_]] 00:50, 24 August 2007 (CEST)
--[[User:Schlumpf|schlumpf_]] 00:50, 24 August 2007 (CEST)


[[Category:DBC]]
[[Category:DBC]]

Revision as of 18:24, 16 April 2011

Header Info

Records.....................6
Fields.....................37
Record Size...............148
String Block Size.........138

Structure

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2 	flags 	Integer 	Something to do with linking between zones? (Patch 1.9, 1.11) 
3 	factionGroup 	Integer 	
4-20 	Name 	String + Loc
21-37 	shortcut 		String + Loc 

struct ChatChannelsEntry // sizeof(0x14) {

   m_ID; // +0x0, size 0x4, type 0
   m_flags; // +0x4, size 0x4, type 0
   m_factionGroup; // +0x8, size 0x4, type 0
   m_name_lang; // +0xC, size 0x4, type 2
   m_shortcut_lang; // +0x10, size 0x4, type 2

}; --schlumpf_ 00:50, 24 August 2007 (CEST)