Advertisement
Guest User

Friedkitteh UI

a guest
Jul 18th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.01 KB | None | 0 0
  1. -- Friedkitteh scripts. You can copy paste this code into https://addon.bool.no/ to get an AddOn
  2.  
  3. PetName:Hide()
  4. PetFrame:ClearAllPoints()
  5. PetFrame:SetPoint("CENTER",PlayerFrame,"CENTER" ,-145,20)
  6. TargetFrameToT:ClearAllPoints();TargetFrameToT:SetPoint("CENTER",TargetFrame,"Center",75,-50)
  7. FocusFrameToT:ClearAllPoints()
  8. FocusFrameToT:SetPoint("CENTER",FocusFrame,"Center",75,-50)
  9. MainMenuBarArtFrame.LeftEndCap:Hide()
  10. MainMenuBarArtFrame.RightEndCap:Hide()
  11. BuffFrame:SetScale(1.1)
  12.  
  13. SpellActivationOverlayFrame:SetScale(0.7)
  14.  
  15. function Movebuff()
  16. BuffFrame:ClearAllPoints()
  17. BuffFrame:SetScale(1.1)
  18. BuffFrame:SetPoint("CENTER",PlayerFrame,"CENTER",-50,200)
  19. end
  20. hooksecurefunc("BuffFrame_UpdateAllBuffAnchors",Movebuff) Movebuff()
  21.  
  22. function md()
  23. local b = DebuffButton1
  24.  if b then
  25.  b:ClearAllPoints()
  26.  b:SetPoint("CENTER",PlayerFrame,"CENTER",840,115)
  27.  return b
  28.  end
  29.  end
  30.  md()
  31. hooksecurefunc("BuffFrame_UpdateAllBuffAnchors", md) md()
  32.  
  33. -- MainMenuBar:SetScale(1.07)
  34. MultiBarBottomLeft:ClearAllPoints()
  35. MultiBarBottomLeft:SetPoint("CENTER",1,85)
  36. MultiBarBottomLeft.SetPoint = function() end
  37. ActionButton1:ClearAllPoints()
  38. ActionButton1:SetPoint("cENTER",-230,44)
  39. ActionButton1.SetPoint = function() end
  40. MultiBarBottomRight:ClearAllPoints()
  41. MultiBarBottomRight:SetPoint("CENTER",2,124)
  42. MultiBarBottomRight.SetPoint = function() end
  43. MainMenuBarArtFrameBackground:Hide()
  44. ActionBarUpButton:ClearAllPoints()
  45. ActionBarUpButton:SetPoint("CENTER",650,-18)
  46. MainMenuBarArtFrame.PageNumber:Hide()
  47. StatusTrackingBarManager:Hide()
  48.  
  49.  
  50.  
  51. PetActionBarFrame:ClearAllPoints()
  52. PetActionBarFrame:SetScale(1)
  53.  
  54. -- PetActionBarFrame:SetPoint("RIGHT", UIParent, "CENTER", 290, -480)
  55. PetActionBarFrame:SetPoint("RIGHT", UIParent, "CENTER", 290, -362)
  56. PetActionBarFrame.SetPoint=function()end
  57.  
  58. CharacterBag3Slot:Hide()
  59. CharacterBag2Slot:Hide()
  60. CharacterBag1Slot:Hide()
  61. CharacterBag0Slot:Hide()
  62. MicroButtonAndBagsBar.MicroBagBar:Hide()
  63. -- MultiBarBottomLeftButton1FloatingBG:Hide()
  64. -- ActionButton1NormalTexture:Hide()
  65.  
  66. CastingBarFrame:ClearAllPoints()
  67. CastingBarFrame:SetPoint("CENTER", UIParent, "CENTER", 0,-320)
  68. CastingBarFrame.SetPoint=function()end
  69.  
  70. function UABA() bn="BuffButton" for i=1,BUFF_ACTUAL_DISPLAY do x=_G[bn..i] if i>1 then x:ClearAllPoints() if mod(i,8)==1 then x:SetPoint("TOP",_G[bn..(i-8)],"BOTTOM",0,-15) else x:SetPoint("LEFT",pb,"RIGHT",5,0) end end pb=x end end
  71. hooksecurefunc("BuffFrame_UpdateAllBuffAnchors",UABA)
  72.  
  73.  
  74. 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)
  75.  
  76.  
  77. TotemFrame:ClearAllPoints(); TotemFrame:SetPoint("CENTER",UIParent,"CENTER",-625,205); TotemFrame:SetScale(0.9); TotemFrame.SetPoint = function() end
  78.  
  79.  
  80. -- cvars
  81. SetCVar("nameplateMotion", 0)
  82. SetCVar("nameplateOtherTopInset", -1)
  83. SetCVar("nameplateOtherBottomInset", -1)
  84. SetCVar("nameplateOverlapH", 1.1)
  85. SetCVar("nameplateOverlapV", 1.1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement