12 lines
895 B
Lua
12 lines
895 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param container number
|
|
---@param slot number
|
|
---@param IsEquipped boolean
|
|
---@return number money
|
|
---@return number itemCount
|
|
---@return number refundSec
|
|
---@return number currecycount
|
|
---@return number hasEnchants
|
|
---Returns information about alternate currencies refunded for returning an item to vendors. Items bought with alternate currency (honor points, arena points, or special items such as Emblems of Heroism and Dalaran Cooking Awards) can be returned to a vendor for a full refund, but only within a limited time after the original purchase. If the given container slot is empty, contains an item which cannot be returned for an alternate currency refund, or contains an item for which the refund grace period has expired, all returns are nil.
|
|
function GetContainerItemPurchaseInfo(container, slot, IsEquipped) end |