View Single Post
03-26-21, 03:39 PM   #4
L3n1n
A Fallenroot Satyr
 
L3n1n's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2010
Posts: 20
Originally Posted by keid View Post
Im using blizzard raid frames.
This solution:

Code:
hooksecurefunc("CompactUnitFrame_UpdateName", function(frame)
	local playerName = GetUnitName(frame.unit, true)

	if playerName then
		_, class = UnitClass(frame.unit)
		if class == "PRIEST" then
			frame.name:SetVertexColor(0, 0, 0)
		end
	end
end)
  Reply With Quote