DB/SpellInterrupts: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
No edit summary
Line 27: Line 27:
| 9 || Unknown  || Integer || Always 0
| 9 || Unknown  || Integer || Always 0
|}
|}
Related DB2s: [[DB/Spell|Spell]] | [[DB/SpellAuraOptions|SpellAuraOptions]] | [[DB/SpellAuraRestrictions|SpellAuraRestrictions]] | [[DB/SpellClassOptions|SpellClassOptions]] | [[DB/SpellCastingRequirements|SpellCastingRequirements]] | [[DB/SpellCaregories|SpellCategories]] | [[DB/SpellCooldowns|SpellCooldowns]] | [[SpellDescriptionVariables.dbc|SpellDescriptionVariables]] | [[DB/SpellEffect|SpellEffect]] | [[DB/SpellEquippedItems|SpellEquippedItems]] | [[DB/SpellInterrupts|SpellInterrupts]] | [[DB/SpellLevels|SpellLevels]] | [[DB/SpellMisc|SpellMisc]] | [[DB/SpellPower|SpellPower]] | [[DB/SpellReagents|SpellReagents]] | [[DB/SpellShapeShift|SpellShapeShift]] | [[DB/SpellTargetRestrictions|SpellTargetRestrictions]] | [[DB/SpellTotems|SpellTotems]] | [[DB/SpellVisualMissiles|SpellVisualMissiles]] | [[DB/SpellxSpellVisual|SpellxSpellVisual]]
[[User:Synric|Synric]] 12th July 2016
[[User:Synric|Synric]] 12th July 2016


Line 44: Line 40:
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_Legion]][[Category:7.0.1.21737]]

Revision as of 19:58, 12 July 2016

Added in Cataclysm.

7.0.1.21737

Column Field Type Notes
1 ID Integer
2 SpellID Integer
3 AuraInterruptFlags Integer
4 Unknown Integer Wasn't able to match the value
5 ChannelInterruptFlags Integer
6 Unknown Integer Wasn't able to match the value
7 InterruptFlags Integer
8 Unknown Integer Wasn't able to match the value
9 Unknown Integer Always 0

Synric 12th July 2016

6.0.1.18179

struct SpellInterruptsRec {
  uint32_t m_ID;
  uint32_t m_spellID;
  uint32_t m_difficultyID;
  uint32_t m_auraInterruptFlags[2];
  uint32_t m_channelInterruptFlags[2];
  uint32_t m_interruptFlags;
};