View Single Post
03/11/21, 07:37 PM   #3
Zeromaz
Join Date: Nov 2020
Posts: 2
Originally Posted by shira View Post
I assume you mean the white unwavering on the health bar?



if so, there is several ways to disable it. The first is to replace the texture using redirectTexture or making them transparent with setAlpha, the second is to 'disable' the function by overriding it with an empty function.

For reference, the textures are in unitattributevisualizer/
  • attributebar_dynamic_increasedpowerglow.dds
  • targetbar_dynamic_increasedpowerglow.dds

and the function that initializes it is ZO_UnitVisualizer_UnwaveringModule:InitializeBarValues() in unitattributevisualizer/modules/unwavering.lua, which could be replaced with

Code:
function ZO_UnitVisualizer_UnwaveringModule:InitializeBarValues()
     return
end

which one is better, i dont know though
Sorry but i feel dumb. Where do i even find the file to change this stuff? what file am i changing? and yes, you're exactly right. that is the piece i wanted to get rid of

Last edited by Zeromaz : 03/11/21 at 07:40 PM.
  Reply With Quote