View Single Post
  #10  
Old 03-06-2019, 07:33 AM
ApexNews ApexNews is offline
Aviak


Join Date: Feb 2017
Posts: 74
Default

Quote:
Originally Posted by toasteroven [You must be logged in to view images. Log in or Register.]
Is there a way to increase the vertical height of the HP/Mana bars? Keep the width the same, but double the height?
yes you can adjust whatever you want in the xml. it is readable and editable in any text editor including notepad, though i recommend something with syntax highlighting like notepad++ or vs code. the file you want is EQUI_PlayerWindow.xml

the eq ui data types are found here: https://www.eqinterface.com/forums/s...ad.php?t=18784

pick something and change its values then reload in game to see what happens until you start figuring things out. i made these a couple years ago so i forget specifics but this is probably a good place for you to start looking:

<Gauge item = "PW_HP_Gauge0">
<RelativePosition>true</RelativePosition>
<Location>
<X>18</X>
<Y>5</Y>
</Location>
<Size>
<CX>100</CX>
<CY>8</CY> <-- change this and see what happens
</Size>
...
Reply With Quote