DB/NpcModelItemSlotDisplayInfo: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Created page with " {{Template:Sandbox/VersionRange|min_expansionlevel=7}}")
 
mNo edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:


{{Template:Sandbox/VersionRange|min_expansionlevel=7}}
{{Template:Sandbox/VersionRange|min_expansionlevel=7}}
[[Category:DB2]]
====Table====
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|-
| 1 || ID || Integer || link to somewhere ?
|-
| 2 || m_ID || Integer || CreatureDisplayInfoExtra.db2 m_ID
|-
| 3 || ItemModel || Integer || m_ID of ItemdisplayInfo
|-
| 4 || Slot || Integer || > Slot Ref
|}
Slot Ref:
0 - Helm
1 - Shoulder
2 - Shirt
3 - Torso
4 - Belt
5 - Legs
6 - Boots
7 - Wrist
8 - Gloves
9 - Tabard
10 - Cape
Contains : 233267 Records. 7.3.2.24793
==8.0.1.25902==
struct NpcModelItemSlotDisplayInfoRec {
  // uint32_t m_ID;
  uint32_t ItemDisplayId;
  uint8_t Index;
  uint32_t CreatureExtraDisplayId;
};

Latest revision as of 22:59, 2 February 2018

≥ Legion

Table

Column Field Type Notes
1 ID Integer link to somewhere ?
2 m_ID Integer CreatureDisplayInfoExtra.db2 m_ID
3 ItemModel Integer m_ID of ItemdisplayInfo
4 Slot Integer > Slot Ref

Slot Ref:

0 - Helm
1 - Shoulder
2 - Shirt
3 - Torso
4 - Belt
5 - Legs
6 - Boots
7 - Wrist
8 - Gloves
9 - Tabard
10 - Cape

Contains : 233267 Records. 7.3.2.24793

8.0.1.25902

struct NpcModelItemSlotDisplayInfoRec {
  // uint32_t m_ID;
  uint32_t ItemDisplayId;
  uint8_t Index;
  uint32_t CreatureExtraDisplayId;
};