Jump to content

GDR01

Player
  • Content count

    3
  • Joined

  • Last visited

Community Reputation

0 Neutral

About GDR01

  • Rank
    Newcomer

Recent Profile Visitors

534 profile views
  1. GDR01

    modui

    If you're looking to hide both you can just do PlayerStatusTexture:SetTexture(nil);
  2. GDR01

    Hide Stancebar

    Make an lua file, and add it to the toc then do something like: local eventframe = CreateFrame("Frame", "eventframe"); local function hide() ShapeshiftBarFrame:Hide(); ShapeshiftBarFrame:UnregisterAllEvents(); end eventframe:RegisterEvent("PLAYER_ENTERING_WORLD"); eventframe:SetScript("OnEvent", hide); or ShapeshiftBarFrame:SetScript("OnEvent", function() ShapeshiftBarFrame:Hide() ShapeshiftBarFrame:UnregisterAllEvents(); end) I'm not really sure whats considered the best way to do it is, but both work.
  3. GDR01

    Post Your UI #3456789

    Learning LUA and how to make AddOns recently, so I've been recreating a fairly simple UI I briefly used on retail called Improved Blizzard UI. So all credit to him really, but I'm still pretty happy with the progress made.
×