WoW:API GetAuctionItemClasses

From AddOn Studio
Revision as of 00:19, 30 January 2007 by WoWWiki>Adys (typo)
Jump to navigation Jump to search

GetAuctionItemClasses()
Parameters: none
Returns: n return values, each of which is a major auction category. Right now "Weapon", "Armor", "Container", "Consumable", "Trade Goods", "Projectile", "Quiver", "Recipe", "Reagent", "Miscallaneous"


Example
local a,b,c,d,e,f,g,h,i,j = GetAuctionItemClasses(); 
DEFAULT_CHAT_FRAME:AddMessage(a.." "..b.." "..c.." "..d.." "..e.." "..f.." "..g.." "..h.." "..i.." "..j);
Result

This will give you the names of every category, in the client's language.

a = "Weapon"
b = "Armor"
c = "Container"
d = "Consumable"
e = "Trade Goods"
f = "Projectile"
g = "Quiver"
h = "Recipe"
i = "Reagent"
j = "Miscellaneous"