View Single Post
02-19-14, 09:29 AM   #2
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Lua Code:
  1. ChatFrame_AddMessageEventFilter("CHAT_MSG_SYSTEM", function(_, _, message)
  2.      if message == ERR_CHAT_THROTTLED then
  3.           return true
  4.      end
  5. end)

If you need help turning the above code into an addon, copy and paste it into this page:
http://addon.bool.no/
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.

Last edited by Phanx : 02-19-14 at 02:18 PM.
  Reply With Quote