DB/NameGen: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(6 intermediate revisions by 3 users not shown)
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==
Line 14: Line 8:
  4 gender Boolean 0 = male name, 1 = female name  
  4 gender Boolean 0 = male name, 1 = female name  


Retrieved from "http://www.sourcepeek.com/wiki/NameGen.dbc"
==1.12.1.5875, 6.0.1.18179==
 
==6.0.1.18179==
  struct NameGenRec {
  struct NameGenRec {
   uint32_t m_ID;
   uint32_t m_ID;
   stringref m_name;
   {{Template:Type|stringref}} m_name;
   uint32_t m_raceID;
   uint32_t m_raceID;
   uint32_t m_sex;
   uint32_t m_sex;
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 22:55, 1 October 2017

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 

1.12.1.5875, 6.0.1.18179

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