DB/VocalUISounds: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
Contains UI error sounds for all the different races and genders. IE "Already in a group", "Not Enough Mana".. etc...  
Contains UI error sounds for all the different races and genders. IE "Already in a group", "Not Enough Mana".. etc...  
==Header Info==
Records...................639
Fields......................7
Record Size................28
String Block Size...........1


==Structure==
==Structure==

Revision as of 00:23, 23 February 2016

Contains UI error sounds for all the different races and genders. IE "Already in a group", "Not Enough Mana".. etc...

Structure

Column	Field 			Type 		Notes 
1 	ID 			Integer 	
2 	vocalUIEnum 			Integer 	unique id per race
3 	iRefID_ChrRaces 	Integer 	Race
4 	iRefID_NormalSoundID 	Integer[2] 	Male sound, Female sound 
6 	iRefID_PissedSoundID 	Integer[2] 	Male sound, Female sound 

6.0.1.18179

struct VocalUISoundsRec {
  uint32_t m_ID;
  uint32_t m_vocalUIEnum;
  uint32_t m_raceID;
  uint32_t m_NormalSoundID[2];
  uint32_t m_PissedSoundID[2];
};