DB/SpellCastingRequirements: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Created page with 'New in Cataclysm. Category:DBC')
 
No edit summary
 
(14 intermediate revisions by 4 users 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]] || IRefID ||
|- style="background:#E0E0E0;"
| 3  || MinFactionID || Integer ||
|-
| 4  || RequiredAreaGroupID || Integer ||
|- style="background:#E0E0E0;"
| 5  || SpellFocusObject || Integer ||
|-
| 6  || FacingCasterFlags || Integer ||
|- style="background:#E0E0E0;"
| 7  || MinReputation || Integer ||
|-
| 8  || RequiredAuraVision || Integer ||
|- style="background:#E0E0E0;"
| 9  || Unknown || Integer || Always 0
|-
| 10  || Unknown || Integer || Always 0
|- style="background:#E0E0E0;"
| 11  || Unknown || Integer || Always 0
|}
[[User:Synric|Synric]] 12th July 2016
 
==6.0.1.18179==
struct SpellCastingRequirementsRec {
  uint32_t m_ID;
  uint32_t m_facingCasterFlags;
  {{Template:Type/foreign_key|table=Faction}} m_minFactionID;
  int32_t m_minReputation;
  {{Template:Type/foreign_key|table=AreaGroup}} m_requiredAreasID;
  uint32_t m_requiredAuraVision;
  {{Template:Type/foreign_key|table=SpellFocusObject}} m_requiresSpellFocus;
};
 
==4.0.3.13329==
 
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|- style="background:#E0E0E0;"
| 1  || ID || Integer ||
|-
| 2  || FacingCasterFlags || Integer ||
|- style="background:#E0E0E0;"
| 3  || [[Faction.dbc|MinFactionID]] || Integer ||
|-
| 4  || MinReputation || Integer ||
|- style="background:#E0E0E0;"
| 5  || [[AreaGroup.dbc|AreaGroupID]] || Integer ||
|-
| 6  || RequiredAuraVision || Integer ||
|- style="background:#E0E0E0;"
| 7  || RequiresSpellFocus || Integer ||
|}


[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Cataclysm]]
[[Category:DBC_MoP]]
[[Category:4.0.3.13329]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_Legion]][[Category:7.0.1.21737]]
[[Category:SpellData]]

Latest revision as of 03:03, 20 July 2016

≥ Cata

7.0.1.21737

Column Field Type Notes
1 ID Integer
2 SpellID IRefID
3 MinFactionID Integer
4 RequiredAreaGroupID Integer
5 SpellFocusObject Integer
6 FacingCasterFlags Integer
7 MinReputation Integer
8 RequiredAuraVision Integer
9 Unknown Integer Always 0
10 Unknown Integer Always 0
11 Unknown Integer Always 0

Synric 12th July 2016

6.0.1.18179

struct SpellCastingRequirementsRec {
  uint32_t m_ID;
  uint32_t m_facingCasterFlags;
  foreign_key<uint32_t, &FactionRec::m_ID> m_minFactionID;
  int32_t m_minReputation;
  foreign_key<uint32_t, &AreaGroupRec::m_ID> m_requiredAreasID;
  uint32_t m_requiredAuraVision;
  foreign_key<uint32_t, &SpellFocusObjectRec::m_ID> m_requiresSpellFocus; 
};

4.0.3.13329

Column Field Type Notes
1 ID Integer
2 FacingCasterFlags Integer
3 MinFactionID Integer
4 MinReputation Integer
5 AreaGroupID Integer
6 RequiredAuraVision Integer
7 RequiresSpellFocus Integer