m
Move page script moved page API GetAuctionItemTimeLeft to WoW:API GetAuctionItemTimeLeft without leaving a redirect
No edit summary |
m (Move page script moved page API GetAuctionItemTimeLeft to WoW:API GetAuctionItemTimeLeft without leaving a redirect) |
||
| (5 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
{{wowapi}} | |||
Retrieves the time left for a item in the Auction House. | Retrieves the time left for a item in the Auction House. | ||
timeleft = | timeleft = GetAuctionItemTimeLeft("type", index); | ||
---- | ---- | ||
| Line 18: | Line 19: | ||
:;timeleft : a number between 1 and 4 | :;timeleft : a number between 1 and 4 | ||
:::;1 : short | :::;1 : short (less than 30 minutes) | ||
:::;2 : medium | :::;2 : medium (30 minutes - 2 hours) | ||
:::;3 : long | :::;3 : long (2 - 12 hours) | ||
:::;4 : very long | :::;4 : very long (more than 12 hours) | ||
---- | ---- | ||
;''Example'' | ;''Example'' | ||
timeleft = | timeleft = GetAuctionItemTimeLeft("owner", offset + i); | ||
;''Result'' | ;''Result'' | ||
| Line 35: | Line 36: | ||
: Retrieves the time left for an item in the current list of auction items. | : Retrieves the time left for an item in the current list of auction items. | ||