other iconCancel all auctions that are less than 12 hours remaining macro

31
vote up

Macro for Wow: Cancel all auctions that are less than 12 hours remaining for Other. Works in World of Warcraft patch 5.4 Siege of Orgrimmar, Mists of Pandaria

Posted on: 09-10-2012 - Updated on: 09-10-2012 - viewed 6012 times

Need help?

Description:

This auction house macro cancels all of your auctions that have less than 12 hours remaining on the bidding. Caution should be used with this because you could end up losing lots of gold due to auction house fees.

See the related macros below for a macro that just cancels items of a specific name if  you want to be more careful or you don’t deal in massive AH quantities.

/script
local o="owner" p=GetNumAuctionItems(o) i=p
while (i>0) do
  local _,_,c,_,_,_,_,_,_,b,_,_=GetAuctionItemInfo(o,i) t=GetAuctionItemTimeLeft(o,i)
  if((c>0)and(b==0)and(t<4))then
    CancelAuction(i)
  end
  i=i-1
end

One response to “Cancel all auctions that are less than 12 hours remaining”

  1. orc says:

    Doesn’t work ==

Leave a Reply

Your email address will not be published. Required fields are marked *

301 Moved Permanently

Moved Permanently

The document has moved here.