Resize Target Buffs and Debuffs Blizzard UI

Hi !

I recently started to play as a healer and I feel like my target buffs and debuffs are really tiny, I want some help with an addon that just increases the size of the buffs debuffs so I can keep track of what Im going to do next.

I dont wish to change my UI with elvui and other stuff. Just a simple addon to increse buff and debuff size on my target. Tried a google search reddit post so far nothing helpful, hope you guys can lend me a hand

You can resize buffs and debuffs with the addon MoveAnything. But the addon is currently very bugged due to changes in the latest wow patch.

If it doesn’t work for you, or you prefer something more lightweight you can try this macro:

/run hooksecurefunc("TargetFrame_UpdateBuffAnchor", function(_, name, i) _G[name..i]:SetSize(24, 24) end)
/run hooksecurefunc("TargetFrame_UpdateDebuffAnchor", function(_, name, i) _G[name..i]:SetSize(20, 20) end)

just change 24 and 20 to the size you want. To update the buff size after using the macro just retarget yourself once. You can also turn it in to an addon by removing the “/run” parts and copy pasting the code into this website: addon.bool.no

11 Likes

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