DB/FileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
(10 intermediate revisions by 6 users not shown)
Line 1: Line 1:
==12340==
Storage containing several file path references linked to an ID.
{| style="background:#FCFCFC; color:black"
 
|-
{{Template:Sandbox/VersionRange|min_expansionlevel=3|max_expansionlevel=6}}
! width="80" | Column
 
! width="180 " | Field
=={{Template:Sandbox/VersionRange|max_expansionlevel=5}}==
! width="80" | Type
Contains all the external movie files referred to by World of Warcraft. Connected to [[Movie.dbc]], [[MovieFileData.dbc]] and [[MovieVariation.dbc]].
! width="600" | Notes
 
|-
=={{Template:Sandbox/VersionRange|min_expansionlevel=6}}==
|0  || ID  || Integer  || (Some Editors show as Flag!)
As off Warlords of Draeneor, the client references every information from this DBC. They interlink with most storages.
|-
|1  || FileName ||String||
|-
|2  || FilePath ||String|| "INTERFACE\CINEMATICS\" most of the times. (Some Editors show a number!)
|}


==9183==
==9183,12340==
{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"
|-  
|-  
Line 22: Line 17:
! width="600" | Notes
! width="600" | Notes
|-  
|-  
|0  || ID  || Integer  ||  
|0  || ID  || Integer  ||
|-  
|-  
|1  || FileName ||String||  
|1  || FileName ||String||  
|-  
|-  
|2  || FilePath ||String||  
|2  || FilePath ||String|| "INTERFACE\CINEMATICS\" most of the time
|}
|}


[[Category:DBC]] [[Category:3.0.3.9183]] [[Category:3.3.5.12340]]
==6.0.1.18179, 6.2.4.21463==
struct FileDataRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_filename;
  {{Template:Type|stringref}} m_filepath;
};
[[Category:DBC]] [[Category:3.0.3.9183]] [[Category:3.3.5.12340]][[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]][[Category:6.2.4.21463]]

Revision as of 03:56, 20 July 2016

Storage containing several file path references linked to an ID.

Wrath … WoD

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