DB/CharTitles: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
PVP rank and other titles. Added in Burning Crusade Alpha 2.0.0.5665
__FORCETOC__
PVP rank and other titles.


==Structure==
{{Template:Sandbox/VersionRange|min_expansionlevel=2}}
==Wrath==
===3.3.5.12340===
====Table====
'''Column Field Type Notes'''
1 ID Integer
2 Unknown Integer This is never used by the client. Still looks like pointing somewhere. Serverside?
3-19 Male [[Loc]] Title name
20-36 Female [[Loc]] Title name
37 titleMaskID Integer Used ingame in the drop down menu. (186 is max value, check characters.characters structure for more info)
 
==???==
===Table===
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
Line 10: Line 23:
  6      unknown        Integer        All 0 except for Cataclysm titles which are 1.
  6      unknown        Integer        All 0 except for Cataclysm titles which are 1.


==3.3.5a.12340==
==Warlords==
'''Column Field Type Notes'''
===6.0.1.18179===
1 ID Integer
====Struct====
2 Unknown Integer This is never used by the client. Still looks like pointing somewhere. Serverside?
3-19 Male [[Loc]] Title name
20-36 Female [[Loc]] Title name
37 titleMaskID Integer Used ingame in the drop down menu. (186 is max value, check characters.characters structure for more info)
--[[User:Amaroth|Amaroth]] ([[User talk:Amaroth|talk]]) 07:34, 5 May 2015 (UTC)
 
==6.0.1.18179==
  struct CharTitlesRec {
  struct CharTitlesRec {
   uint32_t m_ID;
   uint32_t m_ID;
Line 26: Line 32:
   {{Template:Type|stringref}} m_name1_lang;
   {{Template:Type|stringref}} m_name1_lang;
   uint32_t m_mask_ID;
   uint32_t m_mask_ID;
  uint32_t m_flags;  // &1: non-player title <code>Script_GetTitleName</code>
};
==Legion==
===7.0.3.21491===
====Struct====
struct CharTitlesRec {
  {{Template:Type|stringref}} m_name_lang;
  {{Template:Type|stringref}} m_name1_lang;
  uint16_t m_Condition_ID;
  uint16_t m_mask_ID;
   uint32_t m_flags;
   uint32_t m_flags;
  };
  };
[[Category:DBC]][[Category:DBC_WotLK]]
 
[[Category:DBC]][[Category:DBC_WotLK]][[Category:3.3.5.12340]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_Legion]][[Category:7.0.3.21491]]

Latest revision as of 11:45, 3 May 2019

PVP rank and other titles.

≥ BC

Wrath

3.3.5.12340

Table

Column	Field 		Type 		Notes 
1 	ID 		Integer 		
2 	Unknown 	Integer 	This is never used by the client. Still looks like pointing somewhere. Serverside?
3-19 	Male 		Loc		Title name 
20-36 	Female 		Loc		Title name 
37 	titleMaskID 	Integer 	Used ingame in the drop down menu. (186 is max value, check characters.characters structure for more info)

???

Table

Column	Field 		Type 		Notes 
1 	ID 		Integer 		
2 	condition 	Integer 	This is never used by the client. Still looks like pointing somewhere. Serverside?
3 	Male 		String		Title name 
4 	Female 		String		Title name 
5 	titleMaskID 	Integer 	Used ingame in the drop down menu.
6       unknown         Integer         All 0 except for Cataclysm titles which are 1.

Warlords

6.0.1.18179

Struct

struct CharTitlesRec {
  uint32_t m_ID;
  uint32_t m_Condition_ID;
  stringref m_name_lang;
  stringref m_name1_lang;
  uint32_t m_mask_ID;
  uint32_t m_flags;  // &1: non-player title Script_GetTitleName
};

Legion

7.0.3.21491

Struct

struct CharTitlesRec {
  stringref m_name_lang;
  stringref m_name1_lang;
  uint16_t m_Condition_ID;
  uint16_t m_mask_ID;
  uint32_t m_flags;
};