View Single Post
12-22-11, 09:51 AM   #2
jasje
A Chromatic Dragonspawn
 
jasje's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 150
Lua Code:
  1. local instanceType = select(2, IsInInstance())
  2. if instanceType == "pvp" or instanceType == "arena" then
  3.     self:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
  4. else
  5.     self:UnregisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
  6. end

Not pro at coding but it's something like that
__________________

Tukui | Github
  Reply With Quote