View Single Post
02-07-14, 04:13 AM   #6
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Do what ravagernl suggested several posts up:

Code:
local lastR, lastG, lastB
hooksecurefunc(ChatFrame1, "AddMessage", function(self, message, r, g, b, ...)
     lastR, lastG, lastB = r or 1, g or 1, b or 1
end)
__________________
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.
  Reply With Quote