View Single Post
12-20-08, 04:20 PM   #13
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
clean version, in case you just want it to work with no popups

Code:
local addon = CreateFrame('Frame')
addon:RegisterEvent('RAID_ROSTER_UPDATE')
addon:SetScript('OnEvent', function()
	if(not LoggingCombat()) then
		LoggingCombat(1)
	end
end)

Last edited by p3lim : 12-20-08 at 04:23 PM.
  Reply With Quote