Posted on: 09-10-2012 - Updated on: 09-10-2012 - viewed 5840 times
Description:
This handy macro for auctions cancels all of your auctions that are of the item inside the quotes. Replace the item “Enter Item Name Here” to end all of those auctions. Very nice when you know that every day you need to cancel high supply, volatile market items
/script local o="owner" p=GetNumAuctionItems(o) n="Enter Item Name Here" for i=1,p do local b,_,_,_,_,_,_,_,_=GetAuctionItemInfo(o,i) if(b==n)then CancelAuction(i) end end