DB/AuctionHouse: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This one stores information about auction houses and their fees.
This one stores information about auction houses and their fees.


==Structure==
==1.12.1.5875-3.0.2.8905-3.3.5.12340-6.0.1.18179==
===Table===
{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"
|-  
|-  
Line 13: Line 14:
|2  || [[Faction.dbc|Faction]]  || iRefID  || Faction this AH belongs to.
|2  || [[Faction.dbc|Faction]]  || iRefID  || Faction this AH belongs to.
|-  
|-  
|3  || AuctionFee || Integer  || The AH's cut of your final earnings.
|3  || DepositRate || Integer  || Used for deposit price calculation (minimum is always 1 silver).
|-  
|-  
|4  || DespositTax || Integer  || x% of sale price  
|4  || AuctionCut || Integer  || % of item's sell price cut from earnings.
|-  
|-  
|5  || Name  || [[Loc]]  || The name of the house.
|5  || Name  || [[Loc]]  || The name of the house.
|}
|}
==6.0.1.18179==
 
===Struct===
  struct AuctionHouseRec {
  struct AuctionHouseRec {
   uint32_t m_ID;
   uint32_t m_ID;
   uint32_t m_factionID;
   {{Template:Type/foreign_key|table=Faction}} m_factionID;
   uint32_t m_depositRate;
   uint32_t m_depositRate;
   uint32_t m_consignmentRate;
   uint32_t m_consignmentRate;
   stringref m_name_lang;
   {{Template:Type|stringref}} m_name_lang;
  };
  };
Retrieved from "http://www.sourcepeek.com/wiki/AuctionHouse.dbc"


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

Latest revision as of 20:56, 1 October 2017

This one stores information about auction houses and their fees.

1.12.1.5875-3.0.2.8905-3.3.5.12340-6.0.1.18179

Table

Column Field Type Notes
1 ID Integer
2 Faction iRefID Faction this AH belongs to.
3 DepositRate Integer Used for deposit price calculation (minimum is always 1 silver).
4 AuctionCut Integer % of item's sell price cut from earnings.
5 Name Loc The name of the house.

Struct

struct AuctionHouseRec {
  uint32_t m_ID;
  foreign_key<uint32_t, &FactionRec::m_ID> m_factionID;
  uint32_t m_depositRate;
  uint32_t m_consignmentRate;
  stringref m_name_lang;
};