DB/ZoneIntroMusicTable

From wowdev
Revision as of 23:19, 1 October 2017 by Schlumpf (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 

1.12.1.5875, 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;
};