Thread Tools Display Modes
08-13-20, 09:17 AM   #1
abipupu
A Defias Bandit
Join Date: Aug 2020
Posts: 3
Question Hide realmname+pvp number

-----ARENA NUMBER (1 2 3 at nameplates)------

local U=UnitIsUnit hooksecurefunc("CompactUnitFrame_UpdateName",function(F)if IsActiveBattlefieldArena()and F.unit:find( "nameplate")then for i=1,5 do if U( F.unit ,"arena"..i)then F.name:SetText(i)F.name:SetTextColor(1 ,1,0)break end end end end)

----------HIDE REALMNAME (Replace -Realmname to (*) )-----------
hooksecurefunc("CompactUnitFrame_UpdateName", function(frame)
if ShouldShowName(frame) then
if frame.optionTable.colorNameBySelection then
frame.name:SetText(GetUnitName(frame.unit))
end
end
end)

this two scripts wont work together, please help fix that . i have no clue
  Reply With Quote
08-14-20, 12:21 AM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
Lua Code:
  1. hooksecurefunc("CompactUnitFrame_UpdateName",function(frame)
  2.     local arena
  3.     if IsActiveBattlefieldArena() and frame.unit:find("nameplate") then
  4.         for i=1,5 do
  5.             if UnitIsUnit(frame.unit,"arena"..i) then
  6.                 frame.name:SetText(i)
  7.                 frame.name:SetTextColor(1,1,0)
  8.                 arena=true
  9.                 break
  10.             end
  11.         end
  12.     end
  13.     if not arena and ShouldShowName(frame) then
  14.         if frame.optionTable.colorNameBySelection then
  15.             frame.name:SetText(GetUnitName(frame.unit))
  16.         end
  17.     end
  18. end)
  Reply With Quote
08-14-20, 04:28 AM   #3
abipupu
A Defias Bandit
Join Date: Aug 2020
Posts: 3
Originally Posted by Kanegasi View Post
Lua Code:
  1. hooksecurefunc("CompactUnitFrame_UpdateName",function(frame)
  2.     local arena
  3.     if IsActiveBattlefieldArena() and frame.unit:find("nameplate") then
  4.         for i=1,5 do
  5.             if UnitIsUnit(frame.unit,"arena"..i) then
  6.                 frame.name:SetText(i)
  7.                 frame.name:SetTextColor(1,1,0)
  8.                 arena=true
  9.                 break
  10.             end
  11.         end
  12.     end
  13.     if not arena and ShouldShowName(frame) then
  14.         if frame.optionTable.colorNameBySelection then
  15.             frame.name:SetText(GetUnitName(frame.unit))
  16.         end
  17.     end
  18. end)
thanks so much, its work perfect
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Hide realmname+pvp number

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off