Hide names/role icons on raid frames

hey,

i actually had a working fix for this but i got a new pc a few days ago and i dont remember how it got it working in the first place but I need to hide names and realm names and role icons on my default raid frames.

I found an addon that does this but its bugging out, producing lua errors and also hiding the whole raid frames randomly that i can only make appear again with a reload. Needless to say thats not ideal.

I know it must exist somewhere, anyone has an idea how to get this done without tainting? some kind of script or custom code that i can even run with weakauras, doesnt have to be an addon, can be anything really

This hides the names and role icons on the default raid frames.

Paste the below code into
https://addon.bool.no

hooksecurefunc("CompactUnitFrame_UpdateName", function(frame)
	if frame.optionTable == DefaultCompactUnitFrameOptions then
		frame.name:Hide()
		frame.roleIcon:SetAlpha(0)
	end
end)
1 Like

thank you very much

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