DB/HolidayDescriptions: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==3.3.5a (12340)==
Stores descriptions for holiday events. References in [[Holidays.dbc]].
{| style="background:#FCFCFC; color:black"
HolidayDescriptions.dbc stores the descriptions of Holiday events shown on the in-game calendar.


{{Template:Sandbox/VersionRange|min_expansionlevel=3}}


==9183/12340==
{| style="background:#FCFCFC; color:black"
|-  
|-  
! width="80" | Column  
! width="80" | Column  
Line 10: Line 11:
! width="600" | Notes
! width="600" | Notes
|-  
|-  
|1  || Holiday/Event ID  || Integer  ||  
|1  || ID  || Integer  ||  
|-  
|-  
|2  || Holiday/Event Description || String ||
|2-18 || Holiday Description ||[[Loc]]||
|-
|3-17 || Blank || N/A ||
|-
|18 || Flags || String || Always "0xFF01FE" ||
|-
|}
|}


==6.0.1.18179==
struct HolidayDescriptionsRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_description_lang;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 02:45, 20 July 2016

Stores descriptions for holiday events. References in Holidays.dbc.

≥ Wrath

9183/12340

Column Field Type Notes
1 ID Integer
2-18 Holiday Description Loc

6.0.1.18179

struct HolidayDescriptionsRec {
  uint32_t m_ID;
  stringref m_description_lang;
};