DB/GameTips: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page GameTips.dbc to DB/GameTips)
mNo edit summary
Line 2: Line 2:


Following at least MoP (presumbly 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 generell ones, e.g. the "Do not play too much". Those with level are actual in-game notes/hints.
Following at least MoP (presumbly 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 generell ones, e.g. the "Do not play too much". Those with level are actual in-game notes/hints.
==Header Info ==
Records....................82
Fields.....................18
Record Size................40
String Block Size........9151


==Structure==
==Structure==

Revision as of 00:11, 23 February 2016

Contains tips that are shown at loading screens .

Following at least MoP (presumbly 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 generell ones, e.g. the "Do not play too much". Those with level are actual in-game notes/hints.

Structure

Column	Field 		Type 
1 	ID 		Integer 	
2-18 	Tip 		Loc 	

--Schlumpf 01:22, 13 August 2007 (CEST)

5.4.8.18414

See 6.X

6.0.1.18179

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