WoW:API StartAuction: Difference between revisions
Jump to navigation
Jump to search
(upgraded deprecated template) |
mNo edit summary |
||
Line 7: | Line 7: | ||
'50' or '10' or '1' will always make the auction do '1 silver'. But '102' will make it do '1 silver 2 copper'. | '50' or '10' or '1' will always make the auction do '1 silver'. But '102' will make it do '1 silver 2 copper'. | ||
The runTime is in minutes. Apparently, the ''only'' permissible values are | The runTime is in minutes. Apparently, the ''only'' permissible values are 8*60, 24*60, 48*60, for 8, 24, and 48 hours, respectively. | ||
Examples: | Examples: | ||
Line 26: | Line 26: | ||
*Type the following into chat window: | *Type the following into chat window: | ||
/script StartAuction(1,150, | /script StartAuction(1,150,8*60) | ||
*This should create an auction starting at 1 silver, buyout at 1 silver 50 copper, with auction time of | *This should create an auction starting at 1 silver, buyout at 1 silver 50 copper, with auction time of 8 hours. | ||
*It should say 'Auction Created' in the chat window. | *It should say 'Auction Created' in the chat window. | ||
*Now if you go to browse the auctions, your items should show up. | *Now if you go to browse the auctions, your items should show up. |
Revision as of 05:49, 31 December 2008
← WoW API < StartAuction
StartAuction(minBid, buyoutPrice, runTime) - Starts the auction you have created in the Create Auction panel.
The item is that which has been put into the AuctionSellItemButton. That's the slot in the 'create auction' panel.
The minBid and buyoutPrice are in copper. However I cant figure out how to go below 1 silver. So putting in '50' or '10' or '1' will always make the auction do '1 silver'. But '102' will make it do '1 silver 2 copper'.
The runTime is in minutes. Apparently, the only permissible values are 8*60, 24*60, 48*60, for 8, 24, and 48 hours, respectively.
Examples:
StartAuction(1,1,120) - Start at 1 silver, buyout 1 silver, time 2 hours StartAuction(1,10,120) - Start at 1 silver, buyout 1 silver, time 2 hours StartAuction(1,100,120) - Start at 1 silver, buyout 1 silver, time 2 hours StartAuction(1,1000,2*60) - Start at 1 silver, buyout 10 silver, time 2 hours StartAuction(1,10000,8*60) - Start at 1 silver, buyout 1 gold, time 8 hours StartAuction(101,150,24*60) - Start at 1 silver 1 copper, buyout at 1 silver 50 copper, time 24 hours
Play with it yourself:
- Go to auction house
- Right click on auctioneer
- Click on the 'auction' tab
- Drag an item to the slot in the 'Create Auction' panel
- Type the following into chat window:
/script StartAuction(1,150,8*60)
- This should create an auction starting at 1 silver, buyout at 1 silver 50 copper, with auction time of 8 hours.
- It should say 'Auction Created' in the chat window.
- Now if you go to browse the auctions, your items should show up.