DB/FileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
(Up to latest WOD version (21463).)
Line 1: Line 1:
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]].
=={{Template:Sandbox/VersionRange|min_expansionlevel=6}}==
As off Warlords of Draeneor, the client references every information from this DBC. They interlink with most storages.


==9183,12340==
==9183,12340==
Line 16: Line 19:
|}
|}


==6.0.1.18179==
==6.0.1.18179, 6.2.4.21463==
  struct FileDataRec {
  struct FileDataRec {
   uint32_t m_ID;
   uint32_t m_ID;
Line 23: Line 26:
  };
  };
[[Category:DBC]] [[Category:3.0.3.9183]] [[Category:3.3.5.12340]][[Category:DBC_WotLK]]
[[Category:DBC]] [[Category:3.0.3.9183]] [[Category:3.3.5.12340]][[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]][[Category:6.2.4.21463]]

Revision as of 19:49, 1 May 2016

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;
};