DB/GameTips: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Contains tips that are shown at loading screens  
Contains tips that are shown at loading screens .


==Header Info ==
Following at least MoP (presumably Cata as well), this DBC can contain m_min_level and m_max_level. It can range from 1 - 90 '''AND''' also '''0 - 0'''. Those with 0 are mostly general ones, e.g. the "Do not play too much". Those with level are actual in-game notes/hints.
Records....................82
Fields.....................18
Record Size................40
String Block Size........9151


==Structure==
==1.12.1.5875==
  '''Column Field Type'''
  struct GameTipsRec {
1 ID Integer
  uint32_t m_ID;
2-18 Tip [[Loc]]
  {{Type|langstringref}} m_text_lang;
 
};
--[[User:Schlumpf|Schlumpf]] 01:22, 13 August 2007 (CEST)
 
==5.4.8.18414==
See 6.X


==6.0.1.18179==
==5.4.8.18414, 6.0.1.18179==
  struct GameTipsRec {
  struct GameTipsRec {
   uint32_t m_ID;
   uint32_t m_ID;
   stringref m_text_lang;
   {{Type|langstringref}} m_text_lang;
   uint32_t m_min_level;
   uint32_t m_min_level;
   uint32_t m_max_level;
   uint32_t m_max_level;
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_MoP]]
[[Category:DBC_MoP]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 15:13, 1 January 2020

Contains tips that are shown at loading screens .

Following at least MoP (presumably Cata as well), this DBC can contain m_min_level and m_max_level. It can range from 1 - 90 AND also 0 - 0. Those with 0 are mostly general ones, e.g. the "Do not play too much". Those with level are actual in-game notes/hints.

1.12.1.5875

struct GameTipsRec {
  uint32_t m_ID;
  langstringref m_text_lang;
};

5.4.8.18414, 6.0.1.18179

struct GameTipsRec {
  uint32_t m_ID;
  langstringref m_text_lang;
  uint32_t m_min_level;
  uint32_t m_max_level;
};