Remove loot from BossBannerWidget

Sometimes I get a double loot indicator from the normal loot window and also from the BossBannerWidget. This is kind of annoying. Anyone know how to turn off the BossBannerWidget?

/run BossBanner:UnregisterAllEvents()

or

/run BossBanner:UnregisterEvent(“ENCOUNTER_LOOT_RECEIVED”)

might be better.

1 Like

Thanks. It didn’t seem to work I’m afraid.

I don’t understand the mess that is boss loot windows. There’s the normal loot frame (affected by autoloot etc), then there’s the Loot Alert frame, then there’s the Boss Widget Frame. They all produce loot alerts when a boss is looted. 3x loot alerts.

https://addon.bool.no

local f = CreateFrame("Frame")
local function OnEvent(self, event)
	if BossBanner then
		--BossBanner:UnregisterEvent("BOSS_KILL")
		--BossBanner:UnregisterEvent("ENCOUNTER_LOOT_RECEIVED")
		BossBanner:UnregisterAllEvents()
	end
end

f:RegisterEvent("PLAYER_ENTERING_WORLD")
f:SetScript("OnEvent", OnEvent)
1 Like

wow. Just now and again, you get the guy you need. Thanks.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.