DB/AreaGroup: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
__FORCETOC__ | |||
Used for prohibiting or enabling spells in specific areas. | Used for prohibiting or enabling spells in specific areas. | ||
==3.0.2.8905-6.0.1.18179== | |||
{| style="background:#FCFCFC; color:black" | {| style="background:#FCFCFC; color:black" | ||
|- | |- | ||
Line 14: | Line 12: | ||
| 1 || ID || Integer || | | 1 || ID || Integer || | ||
|- style="background:#F0F8FF;" | |- style="background:#F0F8FF;" | ||
| 2 | | 2-7 || [[AreaTable.dbc|Entry1]] || iRefID[6] || This is a list of areas in the [[AreaTable.dbc|AreaTable]]. | ||
|- style="background:#F0F8FF;" | |- style="background:#F0F8FF;" | ||
| 8 || [[AreaGroup.dbc|MoreEntries]] || iRefID || And if these 6 aren't enough, at this ID there are more entries. | | 8 || [[AreaGroup.dbc|MoreEntries]] || iRefID || And if these 6 aren't enough, at this ID there are more entries. | ||
|} | |} | ||
struct AreaGroupRec { | struct AreaGroupRec { | ||
uint32_t m_ID; | uint32_t m_ID; |
Revision as of 12:12, 16 July 2016
Used for prohibiting or enabling spells in specific areas.
3.0.2.8905-6.0.1.18179
Column | Field | Type | Notes |
---|---|---|---|
1 | ID | Integer | |
2-7 | Entry1 | iRefID[6] | This is a list of areas in the AreaTable. |
8 | MoreEntries | iRefID | And if these 6 aren't enough, at this ID there are more entries. |
struct AreaGroupRec { uint32_t m_ID; foreign_keyⁱ<uint32_t, &AreaTableRec::m_ID> m_areaID[6]; foreign_keyⁱ<uint32_t, &AreaGroupRec::m_ID> m_nextAreaID; // if 6 entries are not enough. 0 for end of list. };