DB/ZoneIntroMusicTable

From wowdev
Revision as of 17:47, 14 February 2016 by Schlumpf (talk | contribs)
Jump to navigation Jump to search

Header Info

Records...................107
Fields......................5
Record Size.................?
String Block Size...........?

Structure

Column 	Field 			Type 		Notes 
1 	ID 			Integer 	
2 	Name 			String 		an internal name for the intro
3 	iRefID_SoundEntries 	Integer 	the used sound
4 	priority		Integer
5 	MinDelayMinutes 	Integer 

--Schlumpf 23:15, 12 August 2007 (CEST)

6.0.1.18179

struct ZoneIntroMusicTableRec {
  uint32_t m_ID;
  stringref m_Name;
  foreign_key<uint32_t, &SoundEntriesRec::m_ID> m_SoundID;
  uint32_t m_Priority;
  uint32_t m_MinDelayMinutes;
};