DB/DungeonMap: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
==9551==
==3.0.9.9551==
{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"
|-  
|-  
Line 18: Line 18:
|-
|-
|}
|}
==6.0.1.18179==
==6.0.1.18179==
  struct DungeonMapRec {
  struct DungeonMapRec {

Revision as of 05:14, 13 July 2016

3.0.9.9551

Column Field Type Notes
0 ID Integer
1 Map iRefID
2 Layer Integer for instances with multiple floors
3-6 Coordinates Float[4] in which range in x and y is this shown. used for scaling.
7 Area iRefID if only used in a specific area. see the northrend one.

6.0.1.18179

struct DungeonMapRec {
  uint32_t m_ID;
  foreign_key<uint32_t, &MapRec::m_ID> m_mapID;
  uint32_t m_floorIndex;
  float m_min[2];
  float m_max[2];
  foreign_key<uint32_t, &AreaTableRec::m_ID> m_parentWorldMapID;
  uint32_t m_flags;
};