12 lines
652 B
Lua
12 lines
652 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param minBid number
|
|
---@param buyoutPrice number
|
|
---@param runTime 3
|
|
---@param 1
|
|
---@param 2
|
|
---@param 3
|
|
---@param stackSize number
|
|
---@param numStacks number
|
|
---Creates an auction for the item currently in the "auction item" slot. Has no effect unless an item has been placed in the Create Auction UI's "auction item" slot (see ClickAuctionSellItemButton()). With patch 3.3.3 the runTime arg was changed from minutes to an index and the stackSize/numStacks args were added for batch posting.
|
|
function StartAuction(minBid, buyoutPrice, runTime, 1, 2, 3, stackSize, numStacks) end |