DB/ChatProfanity: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This file encompasses all languages and is not localized. Keep in mind that size of string block is in bytes, not unicode characters.
This file encompasses all languages and is not localized. Keep in mind that size of string block is in bytes, not unicode characters.


==Structure==
==1.12.1.5875==
struct ChatProfanityRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_text;
};
 
==Wrath==
===3.3.5.12340===
====Table====
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
Line 7: Line 15:
  3 LanguageID Integer Col Added in 2.0.0.5849. English = 0, AsianLang = 1, French=2, German = 3, etc...?  
  3 LanguageID Integer Col Added in 2.0.0.5849. English = 0, AsianLang = 1, French=2, German = 3, etc...?  
  Confirm this? -- Only goes up to 5 (six total including zero).  
  Confirm this? -- Only goes up to 5 (six total including zero).  
 
==Warlords==
==6.0.1.18179==
===6.0.1.18179===
====Struct====
  struct ChatProfanityRec {
  struct ChatProfanityRec {
   uint32_t m_ID;
   uint32_t m_ID;
   stringref m_text;
   {{Template:Type|stringref}} m_text;
   uint32_t m_Language;
   uint32_t m_Language;
  };
  };
[[Category:DBC]][[Category:DBC_WotLK]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]][[Category:3.3.5.12340]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 20:52, 1 October 2017

This file encompasses all languages and is not localized. Keep in mind that size of string block is in bytes, not unicode characters.

1.12.1.5875

struct ChatProfanityRec {
  uint32_t m_ID;
  stringref m_text;
};

Wrath

3.3.5.12340

Table

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2 	dirty_word 	String 	
3 	LanguageID 	Integer 	Col Added in 2.0.0.5849. English = 0, AsianLang = 1, French=2, German = 3, etc...? 
					Confirm this? -- Only goes up to 5 (six total including zero). 

Warlords

6.0.1.18179

Struct

struct ChatProfanityRec {
  uint32_t m_ID;
  stringref m_text;
  uint32_t m_Language;
};