DB/SpellMisc: Difference between revisions

From wowdev
Jump to navigation Jump to search
Line 37: Line 37:
| 15  ||[[SpellMisc.dbc/AttributesExM|AttributesExM]]||Integer||Attributes are in general miscellanous flags.
| 15  ||[[SpellMisc.dbc/AttributesExM|AttributesExM]]||Integer||Attributes are in general miscellanous flags.
|-style="background:#E0E0E0;"
|-style="background:#E0E0E0;"
| 16  ||float||speed||
| 16  ||Speed||Float||
|-
|-
| 17  ||Unknown|| Integer || Couldn't match this value. Could be something, could be new
| 17  ||Unknown|| Integer || Couldn't match this value. Could be something, could be new

Revision as of 17:10, 12 July 2016

7.0.1.21737

Column Field Type Notes
1 ID Integer
2 Attributes Integer Attributes are in general miscellanous flags.
3 AttributesEx Integer Attributes are in general miscellanous flags.
4 AttributesExB Integer Attributes are in general miscellanous flags.
5 AttributesExC Integer Attributes are in general miscellanous flags.
6 AttributesExD Integer Attributes are in general miscellanous flags.
7 AttributesExE Integer Attributes are in general miscellanous flags.
8 AttributesExF Integer Attributes are in general miscellanous flags.
9 AttributesExG Integer Attributes are in general miscellanous flags.
10 AttributesExH Integer Attributes are in general miscellanous flags.
11 AttributesExI Integer Attributes are in general miscellanous flags.
12 AttributesExJ Integer Attributes are in general miscellanous flags.
13 AttributesExK Integer Attributes are in general miscellanous flags.
14 AttributesExL Integer Attributes are in general miscellanous flags.
15 AttributesExM Integer Attributes are in general miscellanous flags.
16 Speed Float
17 Unknown Integer Couldn't match this value. Could be something, could be new
18 CastTimesID iRefID
19 DurationID iRefID
20 RangeID iRefID
21 IconID1 iRefID
22 IconID2 iRefID Active Spell ID
23 SchoolMask Integer
24 Unknown Integer Couldn't match this value. Could be something, could be new

Synric 12th July 2016

6.0.1.18179

struct SpellMiscRec {
  uint32_t m_ID;
  uint32_t m_spellID;
  uint32_t m_difficultyID;
  uint32_t m_attributes[14];
  uint32_t m_castingTimeIndex;
  uint32_t m_durationIndex;
  uint32_t m_rangeIndex;
  float m_speed;
  uint32_t m_spellVisualID[2];
  uint32_t m_spellIconID;
  uint32_t m_activeIconID;
  uint32_t m_schoolMask;
};

6.2.2.20444

struct SpellMiscRec {
  uint32_t m_ID;
  uint32_t m_attributes[14];
  uint32_t m_castingTimeIndex;
  uint32_t m_durationIndex;
  uint32_t m_rangeIndex;
  float m_speed;
  uint32_t m_spellIconID;
  uint32_t m_activeIconID;
  uint32_t m_schoolMask;
  uint32_t __unk;
};