DB/NameGen: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
This file is localized depending on client that downloaded it.  
This file is localized depending on client that downloaded it.  
==Header Info==
Records..................1931
Fields......................4
Record Size................16
String Block Size.......13830


==Structure==
==Structure==

Revision as of 00:22, 23 February 2016

This file is localized depending on client that downloaded it.

Structure

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2 	Player Name 	String 		Any given random player name 
3 	iRefID_ChrRaces	Integer 	Ref to ID in ChrRaces 
4 	gender 		Boolean 	0 = male name, 1 = female name 

6.0.1.18179

struct NameGenRec {
  uint32_t m_ID;
  stringref m_name;
  uint32_t m_raceID;
  uint32_t m_sex;
};