DB/Achievement Category: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
__FORCETOC__
__TOC__
Achievement categorys. This file has been added with WoW 3.0.1.8303
Achievement categories. This file has been added with WoW 3.0.1.8303


==(3.0.2.8905) & (3.0.3.9183)==
==Wrath==
===Struct===
===3.0.2.8905===
====Struct====
{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"
|-  
|-  
Line 18: Line 19:
|}
|}


==3.3.5.12340==
===3.0.3.9183===
===Table===
====Struct====
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|-
| 1 || ID || Integer ||
|- style="background:#F0F8FF;"
| 2 || [[Achievement_Category.dbc|ParentID]] || iRefID || -1 if none.
|-
| 3 || Name || [[Loc]] || Category name.
|}
 
===3.3.5.12340===
====Table====
{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"
|-  
|-  
Line 36: Line 53:
|}
|}


==6.0.1.18179==
==Warlords==
===Struct===
===6.0.1.18179===
====Struct====
  struct Achievement_CategoryRec {
  struct Achievement_CategoryRec {
   uint32_t m_ID;
   uint32_t m_ID;
Line 45: Line 63:
  };
  };


[[Category:DBC]][[Category:3.0.2.8905]][[Category:3.0.3.9183]][[Category:3.3.5.12340]][[Category:DBC_WotLK]]
[[Category:DBC]][[Category:DBC_WotLK]][[Category:3.0.2.8905]][[Category:3.0.3.9183]][[Category:3.3.5.12340]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Revision as of 20:03, 13 July 2016

Achievement categories. This file has been added with WoW 3.0.1.8303

Wrath

3.0.2.8905

Struct

Column Field Type Notes
1 ID Integer
2 ParentID iRefID -1 if none.
3 Name Loc Category name.

3.0.3.9183

Struct

Column Field Type Notes
1 ID Integer
2 ParentID iRefID -1 if none.
3 Name Loc Category name.

3.3.5.12340

Table

Column Field Type Notes
1 ID Integer
2 ParentID iRefID -1 if none.
3 Name Loc Category name.
20 ui_order Integer

Warlords

6.0.1.18179

Struct

struct Achievement_CategoryRec {
  uint32_t m_ID;
  foreign_key<uint32_t, &Achievement_CategoryRec::m_ID> m_parent;
  stringref m_name_lang;
  uint32_t m_ui_order;
};