DB/CharHairGeosets: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
Line 2: Line 2:
Defines possible hairstyles for races.
Defines possible hairstyles for races.


==0.5.3.3368-3.0.2.8905-3.3.5.12340==
==0.5.3.3368-1.12.1.5875-3.0.2.8905-3.3.5.12340==
===Struct===
===Struct===
  struct CharHairGeosetsRec {
  struct CharHairGeosetsRec {

Revision as of 21:38, 1 October 2017

Defines possible hairstyles for races.

0.5.3.3368-1.12.1.5875-3.0.2.8905-3.3.5.12340

Struct

struct CharHairGeosetsRec {
  uint32_t m_ID;
  uint32_t m_RaceID;
  uint32_t m_SexID;
  uint32_t m_VariationID;
  uint32_t m_GeosetID;
  uint32_t m_Showscalp;
};

Table

Column Field Type Notes
1 ID Integer God knows why these columns never start at 0..
2 Race iRefID
3 Gender Boolean 0 = Male, 1 = Female
4 HairType Integer
5 Geoset Integer Defines the connection between HairType and Geoset number in MDX model
6 Bald Boolean If this hairstyle bald or not .

Warlords

6.0.1.18179

Struct

struct CharHairGeosetsRec {
  uint32_t m_ID;
  uint32_t m_RaceID;
  uint32_t m_SexID;
  uint32_t m_VariationID;
  uint32_t m_VariationType;    // 0 = skinColor, 1 = face, 2 = beardStyle, 3 = hairStyle & hairColor
  uint32_t m_GeosetID;
  uint32_t m_GeosetType;
  uint32_t m_Showscalp;
  uint32_t m_ColorIndex;
};