14 lines
753 B
Lua
14 lines
753 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param classIndex number
|
|
---@param subClassIndex 5
|
|
---@param 1
|
|
---@param 2
|
|
---@param 3
|
|
---@param 4
|
|
---@param 5
|
|
---@return string token
|
|
---@return 1nil display
|
|
---@return list ...
|
|
---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, 1, 2, 3, 4, 5) end |