From 663d54827d4c156619d306ef2c42651e751aba8a Mon Sep 17 00:00:00 2001 From: praxis <889+praxis@noreply.octowow.st> Date: Sun, 13 Sep 2026 09:53:46 +0000 Subject: [PATCH] Add skins/blizzard/raidui.lua --- skins/blizzard/raidui.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 skins/blizzard/raidui.lua diff --git a/skins/blizzard/raidui.lua b/skins/blizzard/raidui.lua new file mode 100644 index 0000000..a35a389 --- /dev/null +++ b/skins/blizzard/raidui.lua @@ -0,0 +1,33 @@ +pfUI:RegisterSkin("RaidUI", "vanilla", function () + HookAddonOrVariable("Blizzard_RaidUI", function() + + for i = 1, (NUM_RAID_GROUPS or 8) do + local group = _G["RaidGroup"..i] + if group and group.GetRegions then + StripTextures(group) + + for j = 1, (MEMBERS_PER_RAID_GROUP or 5) do + local slot = _G["RaidGroup"..i.."Slot"..j] + if slot and slot.GetRegions then + StripTextures(slot) + CreateBackdrop(slot, nil, true) + SetHighlight(slot, 1, 1, 0) + end + end + end + end + + for i = 1, (MAX_RAID_MEMBERS or 40) do + local button = _G["RaidGroupButton"..i] + if button and button.GetRegions then + StripTextures(button) + CreateBackdrop(button, nil, true) + SetHighlight(button, 1, 1, 0) + end + end + + if RaidFrameAddMemberButton then SkinButton(RaidFrameAddMemberButton) end + if RaidFrameReadyCheckButton then SkinButton(RaidFrameReadyCheckButton) end + + end) +end) \ No newline at end of file