View Single Post
07-30-10, 03:34 PM   #6
lilsparky
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Oct 2007
Posts: 117
is there some reason your code lacks parentheses around some of your arguments?

local addon = CreateFrame"Frame"

should be

local addon = CreateFrame("Frame")

and:

addon:RegisterEvent"COMBAT_LOG_EVENT_UNFILTERED"

should be:

addon:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")


is this just some quirk of your copy-and-paste technique?


anyway, be aware that there might still be issues with proc-oriented buffs not being detected. not sure if blizzard ever fixed these.
  Reply With Quote