DB/VocalUISounds

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

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