DB/MapDifficulty: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
 
(12 intermediate revisions by 6 users not shown)
Line 1: Line 1:
== About ==
== Header Info ==
Records...................167
Fields.....................23
Record Size................92
String Block Size........1219


{{Template:Sandbox/VersionRange|min_expansionlevel=3}}
== Structure ==
== Structure ==
{| style="width: 100%;"
{| style="width: 100%;"
Line 13: Line 6:
|-
|-
| 1 || ID || Integer ||
| 1 || ID || Integer ||
|- class="alt"
|- class ="alt" style="background:#F0F8FF;"
| 2 || mapId || Integer || ID (column 1) in Map.dbc
| 2 || [[Map.dbc|Map]] || iRefID ||
|-
|-
| 3 || type || [[Unknown.Field.Type|Integer*]] || 0: normal, 1: heroicmode, 2: ?, 3: ?
| 3 || dificulty || Integer* || 0: normal, 1: heroicmode, 2: ?, 3: ?
|- class="alt"
|- class="alt"
| 4-20 || Name || [[Loc]] ||
| 4-20 || message || [[Loc]] ||
|-
|-
| 21 || ResetDuration || Integer || in seconds
| 21 || raidDuration || Integer || in seconds
|- class="alt"
|- class="alt"
| 22 || NumberOfPlayers? || Integer ||
| 22 || maxPlayers || Integer ||
|-
|-
| 23 || [[Unknown]] || Integer ||
| 23 || difficultystring || Integer ||
|-
|-
|}
|}


==6.0.1.18179==
struct MapDifficultyRec {
  uint32_t m_ID;
  uint32_t m_mapID;
  uint32_t m_difficultyID;
  {{Template:Type|stringref}} m_message_lang;
  uint32_t m_raidDuration;
  uint32_t m_maxPlayers;
  uint32_t m_lockID;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 01: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;
};