View Single Post
04-16-12, 02:13 PM   #3
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
One of the solutions could be to hook StaticPopup_Show to grab the arguments

Code:
hooksecurefunc("StaticPopup_Show", function(popup, arg1)
	if popup == "PARTY_INVITE" then
		SendChatMessage("text", "WHISPER", nil, arg1)
	end
end)

Last edited by Ketho : 04-16-12 at 02:16 PM.
  Reply With Quote