DB/CharHairGeosets

From wowdev
Revision as of 00:25, 13 February 2016 by Marlamin (talk | contribs) (Marlamin moved page CharHairGeosets.dbc to DB/CharHairGeosets)
Jump to navigation Jump to search

Defines possible hairstyles for races.

Structure

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 .

6.0.1.18179

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;
};