Hello, recently I switched from Vuh’do do the Blizzard raid frames. I managed to get mostly all of it how I want, however the name’s size is too small. It’s not adjustable in game (outside of ui scale), but only to make some addon, or console which can change it. However, I’m not good at it so if there’s someone out there who knows this, please help!
Whether it’s updated to current WoW I’m not sure but there was an addon for this called MoveAnything
Thank you for the answer!
Move anything doesn’t support that feature. However, I’ve managed to increse font size by making a script and addon:
hooksecurefunc(“CompactUnitFrame_UpdateName”, function(frame)
local name = frame.name;
local playerName = GetUnitName(frame.unit, true);
if (playerName) then
name:SetScale(1.5,1.5);
end
end);
If anyone could help out and tell me how to write the code so I can colour the names based on classes.
Untested snippet.
local _, class = UnitClass(frame.unit);
if (class) then
name:SetTextColor(RAID_CLASS_COLORS[class]:GetRGBA());
end
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.