Hide group number on player frame

Is there an addon or script to remove the group number on the default player frame?

Someone wrote this addon to remove the group number on the default raid frames. I am looking for something similar.

hooksecurefunc("CompactRaidGroup_GenerateForGroup", function(groupIndex)
	local frame = _G["CompactRaidGroup"..groupIndex]
	if frame then
		frame.title:SetText("")
	end
end)

Copy/Pasting the following to the website addon.bool.no create/download as an addon should work.

hooksecurefunc("PlayerFrame_UpdateGroupIndicator", function() 
	PlayerFrame.PlayerFrameContent.PlayerFrameContentContextual.GroupIndicator:Hide() 
end)	

Or you could probably just set the GroupIndicator alpha to zero.

1 Like

Works great. Thank you!