DB/AreaGroup: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page AreaGroup.dbc to DB/AreaGroup)
mNo edit summary
Line 25: Line 25:
| 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.
|}
|}
--[[User:Schlumpf|schlumpf_]] 21:43, 28 September 2008 (CEST)


==6.0.1.18179==
==6.0.1.18179==

Revision as of 00:08, 23 February 2016

Used for prohibiting or enabling spells in specific areas.

Structure

Column Field Type Notes
1 ID Integer
2 Entry1 iRefID This is a list of areas in the AreaTable.
3 Entry2 iRefID
4 Entry3 iRefID
5 Entry4 iRefID
6 Entry5 iRefID
7 Entry6 iRefID
8 MoreEntries iRefID And if these 6 aren't enough, at this ID there are more entries.

6.0.1.18179

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