View Single Post
Old 10-28-2020, 10:07 AM   #3
Halelen
Lord Doljonijiarnimorinar
 
Join Date: Jan 2003
Server: Povar
Posts: 1,047
Interface Author - Click to view interfaces
Default

Quote:
Originally Posted by GodSpeedGT
Just want health and mana. Super minimal

some things are hardcoded meaning they have to be there for the window to work. That being said there are a couple of options you can use to accomplish what you want. first you can just set the elements location value off the screen either going negative <x> -500<x> or so high that it is beyond the screen border <x> 5000<x>. the second method is to tell the ui not to use that element by excluding it. at the bottom of the xml where all the elements are listed you just type <!-- prior to the piece you want excluded and --> after. as an example.. i want to remove all elements for mana from my monks player window


<Pieces>HPNumber</Pieces>
<Pieces>MaxHPNumber</Pieces>
<!--<Pieces>ManaNumber</Pieces>
<Pieces>MaxManaNumber</Pieces>
<Pieces>MaxManaLabel</Pieces>
<Pieces>Player_ManaLabel</Pieces>-->

save and reload and done. any questions?
Halelen is offline   Reply With Quote