View Single Post
04-25-17, 01:52 PM   #5
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
Originally Posted by OR14-NS View Post
Actually the question is how? Is it third-party programs (cheats) or something I do not know?

I have honestly no idea about nameplate anchoring or what Exorsus actually used, but it definitely isn't third-party programs (cheats). They were using the WoW API, maybe they just anchored Line objects?

Some people keep referring to it as WeakAuras scripts. Probably it's the same way addons like H.H.T.D. and I See You Too are anchoring stuff to nameplates. It sucks that chat bubbles also got protected besides the forbidden nameplates



Lua Code:
  1. -- does not account for nameplates being recycled
  2. local function ShowNamePlateTexture(unit)
  3.     local np = C_NamePlate.GetNamePlateForUnit(unit)
  4.     if np and not np.tex then
  5.         np.tex = CreateFrame("PlayerModel", nil, np)
  6.         np.tex:SetPoint("BOTTOM", np, "TOP")
  7.         np.tex:SetSize(200, 200)
  8.         np.tex:SetDisplayInfo(21723) -- Murloc Costume
  9.     end
  10. end

Last edited by Ketho : 04-25-17 at 02:33 PM.
  Reply With Quote