DB/Startup Strings: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
DBC contains strings that are used during the startup of wow almost all of them are in case of a problem (such as well known "Your game interface files are corrupt.  Please remove your Interface\FrameXML folder.") with exception for a first line which is
"MSG_TITLE_WOW" meaning its locaalized string is loaded as a window title for the running process
==Structure==
==Structure==
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
Line 5: Line 8:
  3-11 Text String + [[Loc]]
  3-11 Text String + [[Loc]]


==6.0.1.18179==
==1.12.1.5875, 6.0.1.18179==
  struct Startup_StringsRec {
  struct Startup_StringsRec {
   uint32_t m_ID;
   uint32_t m_ID;
   {{Template:Type|stringref}} m_name;
   {{Template:Type|stringref}} m_name;
   {{Template:Type|stringref}} m_message_lang;
   {{Template:Type|langstringref}} m_message_lang;
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 19:24, 30 April 2020

DBC contains strings that are used during the startup of wow almost all of them are in case of a problem (such as well known "Your game interface files are corrupt. Please remove your Interface\FrameXML folder.") with exception for a first line which is "MSG_TITLE_WOW" meaning its locaalized string is loaded as a window title for the running process

Structure

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2 	Name 		String 	
3-11 	Text 		String + Loc

1.12.1.5875, 6.0.1.18179

struct Startup_StringsRec {
  uint32_t m_ID;
  stringref m_name;
  langstringref m_message_lang;
};