Thread Tools Display Modes
04/29/14, 12:07 PM   #1
Nekky
Join Date: Apr 2014
Posts: 5
Removing Default HP/Magika Bar and other questions

I am running FTC and Wykkids so I want to remove some of the default things on my screen. Is there a way to get rid of the default HP, Magika, Stam box so I can just use the one that comes with Wykkid?

I would also like my skill bar to be displayed all the time but I didn't see an option for that.

And my final question, I have it checked to display my buffs but I never see them on my screen. I see the long term buffs but I am looking for something to display the temp buffs that are triggered by my skills. Also debuffs that are on me.

Thanks!
  Reply With Quote
04/29/14, 12:35 PM   #2
Zerorez
 
Zerorez's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 7
lua code for this

Code:
    -- for player attribute bars
    ZO_PlayerAttributeHealth:SetHidden(true)
    ZO_PlayerAttributeStamina:SetHidden(true)
    ZO_PlayerAttributeMagicka:SetHidden(true)
    ZO_PlayerAttributeHealth:UnregisterForEvent(EVENT_POWER_UPDATE)
    ZO_PlayerAttributeStamina:UnregisterForEvent(EVENT_POWER_UPDATE)
    ZO_PlayerAttributeMagicka:UnregisterForEvent(EVENT_POWER_UPDATE)

    -- for target frame
    ZO_TargetUnitFramereticleover:SetHidden(true)
    ZO_UnitFrames:UnregisterForEvent(EVENT_RETICLE_TARGET_CHANGED)
That should do it. Without any OnUpdate functions too even.

Also there is an option to always show the action bar in the settings.
  Reply With Quote
04/29/14, 12:40 PM   #3
Nekky
Join Date: Apr 2014
Posts: 5
Excellent, thank you!

Any idea on why my buffs/debuffs aren't being displayed?
  Reply With Quote
04/30/14, 08:12 AM   #4
Nekky
Join Date: Apr 2014
Posts: 5
OK, where does that code go? Looked when I got home last night and couldn't figure it out.
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » Removing Default HP/Magika Bar and other questions

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