Hey,
I need your help .

I decided to get rid of the annoying auction expired, created and outbid spam in my chatwindow. I took this addon as basis: http://wow.curse.com/downloads/wow-a...arty-time.aspx
Code:
local function party_filter(frame, event, message, ...)
 if message == ERR_NOT_IN_GROUP then 
  return true
 end
 return false, message, ... 
end
ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", party_filter)
I want to add these 3 messages:
ERR_AUCTION_STARTED
ERR_AUCTION_EXPIRED_S
ERR_AUCTION_OUTBID_S

Just replacing the err_ thinks doesn't work ^^

How to do this?