DB/CreatureDisplayInfoExtra: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
(add full and correct info for 6.0.1.18179)
Line 53: Line 53:
| 21 || Texture || String || The [[BLP|texture]] used on the model. Non-standard Latin words, e.g. Germanic umlaut are not loaded.
| 21 || Texture || String || The [[BLP|texture]] used on the model. Non-standard Latin words, e.g. Germanic umlaut are not loaded.
|}
|}
 
==6.0.1.18179==
struct CreatureDisplayInfoExtraRec {
  int m_ID;
  int m_DisplayRaceID;
  int m_DisplaySexID;
  int m_SkinID;
  int m_FaceID;
  int m_HairStyleID;
  int m_HairColorID;
  int m_FacialHairID;
  int m_NPCItemDisplay[11];
  int m_flags;
  int m_fileDataID;
  int m_hdFileDataID;
};
Retrieved from "http://www.sourcepeek.com/wiki/CreatureDisplayInfoExtra.dbc"
Retrieved from "http://www.sourcepeek.com/wiki/CreatureDisplayInfoExtra.dbc"


[[Category:DBC]][[Category:3.0.2.8905]][[Category:DBC_WotLK]]
[[Category:DBC]][[Category:3.0.2.8905]][[Category:DBC_WotLK]]

Revision as of 02:55, 11 July 2014

Defines certain characteristics for npcs.

Structure

Column Field Type Notes
1 ID Integer
2 Race iRefID
3 CreatureType iRefID Removed around 3.2. Maybe sooner ? 3.0.9.9551 doesn't feature it anymore.
3 Gender Boolean 0 for Male, 1 for Female
4 SkinColor Integer
5 FaceType Integer
6 HairType Integer Look up into CharHairGeosets.dbc to define which Geoset to render.
7 HairStyle/HairColor Integer Look up into CharSections.dbc, where GeneralType=3 to define which texture to use.
8 BeardStyle Integer
9 Helm iRefID These columns define the displayid that the NPC is wearing.
10 Shoulder iRefID
11 Shirt iRefID
12 Cuirass iRefID
13 Belt iRefID
14 Legs iRefID
15 Boots iRefID
16 Wrist iRefID
17 Gloves iRefID
18 Tabard iRefID
19 Cape iRefID
20 CanEquip Boolean Can equip additional things when used for players.
21 Texture String The texture used on the model. Non-standard Latin words, e.g. Germanic umlaut are not loaded.

6.0.1.18179

struct CreatureDisplayInfoExtraRec {
  int m_ID;
  int m_DisplayRaceID;
  int m_DisplaySexID;
  int m_SkinID;
  int m_FaceID;
  int m_HairStyleID;
  int m_HairColorID;
  int m_FacialHairID;
  int m_NPCItemDisplay[11];
  int m_flags;
  int m_fileDataID;
  int m_hdFileDataID;
};

Retrieved from "http://www.sourcepeek.com/wiki/CreatureDisplayInfoExtra.dbc"