[Solved] Cancel Auction Macro Broke

I have been using this macro daily to cancel auctions when needed. It was working the morning of 04/17/24 but not in the evening. I assume some stealth change was made.
Click auction > press macro = auction cancelled

/run if not AHCanc then local f=CreateFrame(“Button”,“AHCanc”,nil,“SecureActionButtonTemplate”)f:SetAttribute(“type”,“click”)f:SetAttribute(“clickbutton”,AuctionHouseFrame.AuctionsFrame.CancelAuctionButton)end
/click AHCanc x 1
/click StaticPopup1Button1

Anyone got a fix?

That sort of change would require a client patch so I doubt it’s been changed.
What error is being triggered when you hit it?

No error, just no longer functions, the 2nd part for the confirmation popup works but the first to click the cancel auction button does not

Oh, I wonder if your ActionButtonUseKeyDown CVar changed from 1 to 0. If it did, you’ll need to change

/click AHCanc x 1

to

/click AHCanc x 0

or change the CVar back to 1

/console ActionButtonUseKeyDown 1

That was it, no idea what caused that Cvar to flip but changed back an its working now, thx.

If I had to guess I’d say Plunderstorm. It messes with a bunch of CVars.

1 Like