DB/Mount: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Distinction between signed and unsigned exists now. Also, last field is listed in field structure block as 2 bytes.)
(Replaced content with "According to Schlumpf, i can't contribute, so i should remove this page like he just said.")
Line 1: Line 1:
New in Wod, List of mounts
According to Schlumpf, i can't contribute, so i should remove this page like he just said.
 
==Structure==
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180 " | Field
! width="80" | Type
! width="600" | Notes
|-
| 1  || ID || Integer ||
|- style="background:#F0F8FF;"
| 2 || [[Spell.dbc|SpellID]] || iRefID || The spell id for casting the mount
|- style="background:#F0F8FF;"
| 3 || [[MountType.dbc|MountTypeID]] || iRefID ||
|- style="background:#F0F8FF;"
| 4 || [[CreatureDisplayInfo.dbc|DisplayId]] || iRefID || DisplayId of the mount
|- style="background:#F0F8FF;"
| 5  || Flags || Integer ||
|- style="background:#F0F8FF;"
| 6 || Name ||[[Loc]]|| Name of the mount
|- style="background:#F0F8FF;"
| 7 || Description ||[[Loc]]|| Description of the mount
|- style="background:#F0F8FF;"
| 8 || SourceDescription ||[[Loc]]|| Where you can get the mount
|- style="background:#F0F8FF;"
| 9  || Source || Integer ||
|- style="background:#F0F8FF;"
| 10  || PlayerConditionId || Integer ||
|- style="background:#F0F8FF;"
|}
 
==7.0.3.21491==
struct MountRec { 
  int32_t m_SpellID;
  int32_t m_DisplayID;
  stringrefⁱ m_Name;
  stringrefⁱ m_Description;
  stringrefⁱ m_SourceDescription;
  int16_t m_MountTypeID;
  int16_t m_Flags;
  int16_t m_PlayerConditionID;
  int8_t m_Source;
  uint16_t m_ID;
};
[[Category:DBC]]
[[Category:DBC_WoD]]
[[Category:DBC_Legion]][[Category:7.0.3.21491]]

Revision as of 14:48, 17 May 2016

According to Schlumpf, i can't contribute, so i should remove this page like he just said.