DB/CurrencyCategory

From wowdev
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The new currency-system has categories.

≥ Wrath

unknown probably wotlk, 6.0.1.18179

struct CurrencyCategoryRec {
  uint32_t m_ID;
  enum {
    FLAG_less_important = 1,     // all with flag are sorted after others
    FLAG_is_unused_category = 2, // the "unused" category, last one with flag is used, should only be set once
    FLAG_hidden = 4,             // was probably added later on (present in 6.0.1)
  };
  uint32_t m_flags; 
  stringref m_name_lang;
};

Flags

Value Description
0x0001 FLAG_SORT_LAST
0x0002 FLAG_PLAYER_ITEM_ASSIGNMENT
0x0004 HIDDEN
0x0008 VIRTUAL