View Single Post
02-14-17, 04:32 PM   #1
Dasteman
A Murloc Raider
 
Dasteman's Avatar
Join Date: Feb 2017
Posts: 8
Font size of the nameplates

I'm using currently a script that I've found on another forum to make text font on the nameplate smaller.
It works but it's applying its effect multiple times after long session in the game.
Text gets so small that you can't read anymore.

Do you know what's wrong with that script?
Lua Code:
  1. local frame = CreateFrame("Frame")
  2.     frame:SetScript("OnEvent", function()
  3.     --big plates with small text
  4.     DefaultCompactNamePlateFrameSetUpOptions.useLargeNameFont=false
  5.     end)
  6.     -- Register for interesting events
  7.     frame:RegisterEvent("PLAYER_ENTERING_WORLD")
  Reply With Quote