Default raid frames and heals

Currently raid frames only show a max of 3 HOTS. Does anyone know an addon to increase this?

https://www.curseforge.com/wow/addons/bigdebuffs

1 Like

In case you might want a more lightweight solution, I use this script in an addon:

hooksecurefunc("DefaultCompactUnitFrameSetup", function(frame)
    local name = frame:GetName().."Buff"
    for i = 4, 6 do
        local buff = _G[name..i] or CreateFrame("Button", name..i, frame, "CompactBuffTemplate")
        buff:ClearAllPoints()
        if i == 4 then
            buff:SetPoint("BOTTOMRIGHT", _G[name..i-3], "TOPRIGHT")
        else
            buff:SetPoint("BOTTOMRIGHT", _G[name..i-1], "BOTTOMLEFT")
        end
        local options = DefaultCompactUnitFrameSetupOptions
        local componentScale = min(options.height / 36, options.width / 72)
        local size = 11 * componentScale
    CompactUnitFrame_SetMaxBuffs(frame, 6)
	end
end)

I believe I got it from BigDebuffs and modified it to work on its own. If you don’t know how to make an addon, you can use this tool:
https://addon.bool.no/

1 Like