DB/SpellDuration: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:
*Called from column 13 in [[Spell.dbc]]
*Called from column 13 in [[Spell.dbc]]


==0.5.3.3368==
struct SpellDurationRec {
  uint32_t m_ID;
  uint32_t m_duration;
  uint32_t m_durationPerLevel;
  uint32_t m_maxDuration;
};
==4.0.3.13329==
==4.0.3.13329==



Revision as of 14:58, 5 June 2016

  • Duration is in milliseconds. ($x/1000)
  • Called from column 13 in Spell.dbc

0.5.3.3368

struct SpellDurationRec {
  uint32_t m_ID;
  uint32_t m_duration;
  uint32_t m_durationPerLevel;
  uint32_t m_maxDuration;
};

4.0.3.13329

Column Field Type Notes
1 ID Integer
2 BaseDuration Integer
3 PerLevel Integer
4 MaxDuration Integer Longest duration possible.

6.0.1.18179

struct SpellDurationRec {
  uint32_t m_ID;
  uint32_t m_duration;
  uint32_t m_durationPerLevel;
  uint32_t m_maxDuration;
};