Skip to content
/ Boom Public

Keep everyone informed of your critical hits.

Notifications You must be signed in to change notification settings

neurotech/Boom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)