DB/SpellDuration: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page SpellDuration.dbc to DB/SpellDuration)
mNo edit summary
Line 25: Line 25:
| 4  || MaxDuration || Integer || Longest duration possible.
| 4  || MaxDuration || Integer || Longest duration possible.
|}
|}
Retrieved from "http://www.sourcepeek.com/wiki/SpellDuration.dbc"


==6.0.1.18179==
==6.0.1.18179==

Revision as of 23:51, 21 February 2016

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

Header Info

Records...................150
Fields......................4
Record Size................16
String Block Size...........1

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;
};