DB/DungeonMap: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (add full and correct info for 6.0.1.18179)
mNo edit summary
Line 20: Line 20:
==6.0.1.18179==
==6.0.1.18179==
  struct DungeonMapRec {
  struct DungeonMapRec {
   int m_ID;
   uint32_t m_ID;
   int m_mapID;
   uint32_t m_mapID;
   int m_floorIndex;
   uint32_t m_floorIndex;
   float m_min[2];
   float m_min[2];
   float m_max[2];
   float m_max[2];
   int m_parentWorldMapID;
   uint32_t m_parentWorldMapID;
   int m_flags;
   uint32_t m_flags;
  };
  };
[[Category:DBC]][[Category:DBC_WotLK]]
[[Category:DBC]][[Category:DBC_WotLK]]

Revision as of 20:34, 2 November 2014

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;
  uint32_t m_mapID;
  uint32_t m_floorIndex;
  float m_min[2];
  float m_max[2];
  uint32_t m_parentWorldMapID;
  uint32_t m_flags;
};