16 lines
798 B
Lua
16 lines
798 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias subClassIndex
|
|
---| 1 - Miscellaneous
|
|
---| 2 - Cloth
|
|
---| 3 - Leather
|
|
---| 4 - Mail
|
|
---| 5 - Plate
|
|
|
|
---@param classIndex number
|
|
---@param subClassIndex subClassIndex
|
|
---@return (string|boolean)[] #Pairs of token-display, try use {} to cram into table
|
|
---Returns a list of the inventory subtypes for a given auction house item subclass. Inventory types are the second level of hierarchy seen when browsing item classes (categories) and subclasses at the Auction House: Head, Neck, Shirt, et al for Miscellaneous; Head, Shoulder, Chest, Wrist, et al for Cloth; etc. This function still returns valid information if the player is not interacting with an auctioneer.
|
|
function GetAuctionInvTypes(classIndex, subClassIndex) end
|