Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 384 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 384 Bytes

Boom

Keep everyone informed of your critical hits.

Credits

Thanks to https://wow.gamepedia.com/API_CombatLogGetCurrentEventInfo for the original implementation.


TODO

local function OnEvent(self, event)
	print(CombatLogGetCurrentEventInfo())
end

local f = CreateFrame("Frame")
f:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
f:SetScript("OnEvent", OnEvent)