DB/SpellInterrupts: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page SpellInterrupts.dbc to DB/SpellInterrupts)
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
New in Cataclysm.
 
{{Template:Sandbox/VersionRange|min_expansionlevel=4}}
 
==7.0.1.21737==
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|- style="background:#E0E0E0;"
| 1 || ID || Integer ||
|-
| 2 || [[DB/Spell|SpellID]] || Integer ||
|- style="background:#E0E0E0;"
| 3 || AuraInterruptFlags || Integer ||
|-
| 4 || Unknown || Integer || Wasn't able to match the value
|- style="background:#E0E0E0;"
| 5 || ChannelInterruptFlags || Integer ||
|-
| 6 || Unknown || Integer || Wasn't able to match the value
|- style="background:#E0E0E0;"
| 7 || InterruptFlags || Integer ||
|-
| 8 || Unknown || Integer || Wasn't able to match the value
|- style="background:#E0E0E0;"
| 9 || Unknown  || Integer || Always 0
|}
[[User:Synric|Synric]] 12th July 2016


==6.0.1.18179==
==6.0.1.18179==
Line 12: Line 41:
[[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]]
[[Category:SpellData]]

Latest revision as of 03:04, 20 July 2016

≥ Cata

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