DB/ZoneIntroMusicTable: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==Header Info==
Records...................107
Fields......................5
Record Size.................?
String Block Size...........?
==Structure==
==Structure==
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
  2 Name String an internal (?) name for the intro
  2 Name String an internal name for the intro
  3 iRefID_[[SoundEntries.dbc|SoundEntries]] Integer the used sound
  3 iRefID_[[SoundEntries.dbc|SoundEntries]] Integer the used sound
  4 inuse? Boolean not sure. only false at ''527,"New Intro",0,0,0,''
  4 priority Integer
  5 Unknown Integer* i'm very sure, that its not: ''Q: Possible duration?''
  5 MinDelayMinutes Integer  
 
--[[User:Schlumpf|Schlumpf]] 23:15, 12 August 2007 (CEST)


==1.12.1.5875, 6.0.1.18179==
struct ZoneIntroMusicTableRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_Name;
  {{Template:Type/foreign_key|table=SoundEntries}} m_SoundID;
  uint32_t m_Priority;
  uint32_t m_MinDelayMinutes;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]]
[[Category:6.0.1.18179]]

Latest revision as of 23:19, 1 October 2017

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