DB/NamesProfanity: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
Profane names. Regular Expression patterns used when checking if a name is allowed when naming a character.  
Profane names. Regular Expression patterns used when checking if a name is allowed when naming a character.  


==0.5.3.3368==
struct NamesProfanityRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_Name;
};
==Structure==
==Structure==
  '''Column Field Type Patch Notes'''  
  '''Column Field Type Patch Notes'''  

Revision as of 16:44, 5 June 2016

Profane names. Regular Expression patterns used when checking if a name is allowed when naming a character.

0.5.3.3368

struct NamesProfanityRec {
  uint32_t m_ID;
  stringref m_Name;
};

Structure

Column	Field 		Type 		Patch 	Notes 
1 	ID 		Integer 		
2 	Pattern 	String 		
3 	LanguageID 	Integer 	5849 	English = 0, AsianLang = 1, French=2, German = 3, etc...? Confirm this? 

6.0.1.18179

struct NamesProfanityRec {
  uint32_t m_ID;
  stringref m_Name;
  uint32_t m_Language;
};