DB/MapDifficulty: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
{{Template:Sandbox/VersionRange|min_expansionlevel=3}}
== Structure ==
== Structure ==
{| style="width: 100%;"
{| style="width: 100%;"

Latest revision as of 02:46, 20 July 2016

≥ Wrath

Structure

Column Field Type Notes
1 ID Integer
2 Map iRefID
3 dificulty Integer* 0: normal, 1: heroicmode, 2: ?, 3: ?
4-20 message Loc
21 raidDuration Integer in seconds
22 maxPlayers Integer
23 difficultystring Integer

6.0.1.18179

struct MapDifficultyRec {
  uint32_t m_ID;
  uint32_t m_mapID;
  uint32_t m_difficultyID;
  stringref m_message_lang;
  uint32_t m_raidDuration;
  uint32_t m_maxPlayers;
  uint32_t m_lockID;
};