DB/FileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Up to latest WOD version (21463).)
No edit summary
Line 1: Line 1:
Storage containing several file path references linked to an ID.
=={{Template:Sandbox/VersionRange|max_expansionlevel=5}}==
Contains all the external movie files referred to by World of Warcraft. Connected to [[Movie.dbc]], [[MovieFileData.dbc]] and [[MovieVariation.dbc]].
Contains all the external movie files referred to by World of Warcraft. Connected to [[Movie.dbc]], [[MovieFileData.dbc]] and [[MovieVariation.dbc]].



Revision as of 22:13, 9 May 2016

Storage containing several file path references linked to an ID.

≤ Mists

Contains all the external movie files referred to by World of Warcraft. Connected to Movie.dbc, MovieFileData.dbc and MovieVariation.dbc.

≥ WoD

As off Warlords of Draeneor, the client references every information from this DBC. They interlink with most storages.

9183,12340

Column Field Type Notes
0 ID Integer
1 FileName String
2 FilePath String "INTERFACE\CINEMATICS\" most of the time

6.0.1.18179, 6.2.4.21463

struct FileDataRec {
  uint32_t m_ID;
  stringref m_filename;
  stringref m_filepath;
};