Thread: Taints
View Single Post
04-16-11, 05:58 AM   #6
Sniffles
A Black Drake
 
Sniffles's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2010
Posts: 86
No something like this:

Code:
...
...

FrameName:SetScript("OnEvent", function(self, event, ...)
	if (event == "PLAYER_REGEN_DISABLED") then
		frame:Hide()
	elseif (event == "PLAYER_REGEN_ENABLED") then
		frame:Show()
	end
end)
__________________
Hi!
  Reply With Quote