View Single Post
04/26/14, 09:32 AM   #11
Biki
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 34
Lua Code:
  1. ZO_PlayerAttributeHealthBarLeftGloss:SetHandler("OnUpdate", function()
  2.     ZO_PlayerAttributeHealthBarLeftGloss:SetHidden(true)
  3.   end)
  4.   ZO_PlayerAttributeHealthBarRightGloss:SetHandler("OnUpdate", function()
  5.     ZO_PlayerAttributeHealthBarRightGloss:SetHidden(true)
  6.   end)

Will work too, quick and dirty. Just tested it. But there might be more performant options available.
  Reply With Quote