These macros will cancel your auctions if they are undercut. I don’t camp the AH, don’t relist so I don’t use them myself, but if you have the free time for the 1s war, here is a weapon. Again, I advise against 1s wars as camping AH wastes your time.
This macro requires Auctioneer to be installed and a fresh scan.
/run i,k,o=1,1,”owner”;while k do k=GetAuctionItemLink(o,i);if k then _,_,_,_,_,m=AucAdvanced.Modules.Util.SimpleAuction.Private.GetItems(k);n,_,c,_,_,_,_,_,b,d=GetAuctionItemInfo(o,i);if m and d<1>m*c then CancelAuction(i);end;end;i=i+1;end
Another macro just lists auctions, doesn’t cancel:
/run i,k,o=1,1,”owner”;while k do k=GetAuctionItemLink(o,i);if k then _,_,_,_,_,m=AucAdvanced.Modules.Util.SimpleAuction.Private.GetItems(k);n,_,c,_,_,_,_,_,b,d=GetAuctionItemInfo(o,i);if m and d<1>m*c then print(k,b,m);end;end;i=i+1;end
Read the rest of this entry »