Thread Tools Display Modes
04/14/15, 06:59 PM   #1
OrcRaider
Join Date: Mar 2014
Posts: 16
Post Addons request; Player healthbar, Actionbar

Hello,

Would like to be able to;
- Remove default player heath bar, but keep stamina and magicka bars.
- A toggle to remove all except ultimate and quickitem from actionbar.
EDIT; -Remove healthbar from target frame, but keep name of target.

As a sidenote, is it possible to add magicka and stamina bars to the player's overhead health bar?

Thanks for your time.

Last edited by OrcRaider : 04/14/15 at 07:04 PM.
  Reply With Quote
04/14/15, 07:06 PM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Addon requests go to this forum, normally: http://www.esoui.com/forums/forumdisplay.php?f=165
You might think about moving your thread there

Otherwise ppl maybe will give you the source code for your requested stuff and you can build your addon yourself

Did you have a look at the addon Azurah already? http://www.esoui.com/downloads/info6...orUpdate6.html
It is able to move existing UI elements so you can put the magika and stamina next to the health bars.

I don't know all possibilities of the addon but maybe it can hide the healthbar too.


What do you mean by "remove all from except ... from action bar"?
You want to press a key and your skills 1-5 should be removed from the action bar so it is free again? Or do you want to hide the visibility?

For removing skills, building skill lists and swap them by keybindings have a look at Wykkyd's Outfitter or
GearSwap for example.
  Reply With Quote
04/14/15, 07:53 PM   #3
OrcRaider
Join Date: Mar 2014
Posts: 16
Thanks for replying, and oop wrong section.. maybe a mod can help me with that.

I am using azurah, and it works wonderfully. Doesnt seem able to remove the player healthbar
found some code here; https://www.reddit.com/r/elderscroll...cripts_addons/
Code:
ZO_PlayerAttributeMagicka:UnregisterForEvent(EVENT_POWER_UPDATE)
ZO_PlayerAttributeMagicka:UnregisterForEvent(EVENT_INTERFACE_SETTING_CHANGED)
ZO_PlayerAttributeMagicka:UnregisterForEvent(EVENT_PLAYER_ACTIVATED)
EVENT_MANAGER:UnregisterForUpdate("ZO_PlayerAttributeMagickaFadeUpdate")
ZO_PlayerAttributeMagicka:SetHidden(true)

ZO_PlayerAttributeStamina:UnregisterForEvent(EVENT_POWER_UPDATE)
ZO_PlayerAttributeStamina:UnregisterForEvent(EVENT_INTERFACE_SETTING_CHANGED)
ZO_PlayerAttributeStamina:UnregisterForEvent(EVENT_PLAYER_ACTIVATED)
EVENT_MANAGER:UnregisterForUpdate("ZO_PlayerAttributeStaminaFadeUpdate")
ZO_PlayerAttributeStamina:SetHidden(true)

ZO_PlayerAttributeHealth:UnregisterForEvent(EVENT_POWER_UPDATE)
ZO_PlayerAttributeHealth:UnregisterForEvent(EVENT_INTERFACE_SETTING_CHANGED)
ZO_PlayerAttributeHealth:UnregisterForEvent(EVENT_PLAYER_ACTIVATED)
EVENT_MANAGER:UnregisterForUpdate("ZO_PlayerAttributeHealthFadeUpdate")
ZO_PlayerAttributeHealth:SetHidden(true)

ZO_PlayerAttributeMountStamina:UnregisterForEvent(EVENT_POWER_UPDATE)
ZO_PlayerAttributeMountStamina:UnregisterForEvent(EVENT_INTERFACE_SETTING_CHANGED)
ZO_PlayerAttributeMountStamina:UnregisterForEvent(EVENT_PLAYER_ACTIVATED)
EVENT_MANAGER:UnregisterForUpdate("ZO_PlayerAttributeMountStamina")
ZO_PlayerAttributeMountStamina:SetHidden(true)
but i dont know lua..


As for the actionbar, i meant hide the visibility. I know what skills i have slotted, so its just clutter on my screen. I do need a toggle for it though, for whenever i need to add/remove skills from those bars.
  Reply With Quote
04/15/15, 07:36 PM   #4
OrcRaider
Join Date: Mar 2014
Posts: 16
Moved thread here; http://www.esoui.com/forums/showthread.php?t=4586
  Reply With Quote

ESOUI » Developer Discussions » Lua/XML Help » Addons request; Player healthbar, Actionbar


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