DB/Startup Strings: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==Header Info==
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 corruptPlease remove your Interface\FrameXML folder.") with exception for a first line which is
Records.....................7
"MSG_TITLE_WOW" meaning its locaalized string is loaded as a window title for the running process
  Fields.....................11
Record Size................44
String Block Size.........676


==Structure==
==Structure==
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
  2 sRefCon String
  2 Name String
  3 Text String Error Text
  3-11 Text String + [[Loc]]
4-11 Localization String*
 
Retrieved from "http://www.sourcepeek.com/wiki/Startup_Strings.dbc"


==1.12.1.5875, 6.0.1.18179==
struct Startup_StringsRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_name;
  {{Template:Type|langstringref}} m_message_lang;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[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;
};