View Single Post
01-16-22, 09:58 PM   #2
pinmouse
A Murloc Raider
Join Date: Jul 2014
Posts: 9
Lightbulb

Ended up doing this...

Code:
local ShrinkNameplate = CreateFrame("frame", "ShrinkNameplate")
ShrinkNameplate:RegisterEvent("PLAYER_ENTERING_WORLD")

ShrinkNameplate:SetScript("OnEvent", function(self, event, ...)
	if(event == "PLAYER_ENTERING_WORLD") then
		C_NamePlate.SetNamePlateFriendlySize(60, 30)
		print("Nameplates Resized!")
	end
end)
I think it will work - I'm about to test it, but if you see any way I can simplify it more please let me know.

Thanks!!!
  Reply With Quote