Main Menu

Exp % added to regular ui

Started by Noxdowne Draggout, January 15, 2004, 09:04:52 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Noxdowne Draggout

Is there a UI mod that can just add an experience % to the existing Sony UI?

I am a total duh at this stuff.

I am happy with my basic UI and I don;t like messing with patch updates and junk.

Just want my exp to say the % on the side.

Help?

Nox

Noriko

The easy part:

Place this section in your player window (EQUI_PlayerWindow.html) along with the other <Label>s.  The first <Label> below is the actual % number.  The second <Label> below is just the "%" sign.
[code:1]
   <Label item ="GW_Player_ExpGauge_Percent">
      <ScreenID>ExpGaugePercentLabel</ScreenID>
      <Font>2</Font>
      <RelativePosition>true</RelativePosition>
      <Location>
         <X>95</X>
         <Y>40</Y>
      </Location>
      <Size>
         <CX>35</CX>
         <CY>15</CY>
      </Size>
      <EQType>26</EQType>
      <TextColor>
            <R>125</R>
            <G>184</G>
            <B>235</B>
      </TextColor>
      <AlignCenter>false</AlignCenter>
      <AlignRight>true</AlignRight>
      <AlignLeft>false</AlignLeft>
   </Label>

   <Label item ="GW_Player_ExpGauge_Fig">
      <ScreenID>ExpGauge_FigLabel</ScreenID>
      <Font>1</Font>
      <RelativePosition>true</RelativePosition>
      <Location>
         <X>103</X>
         <Y>42</Y>
      </Location>
      <Size>
         <CX>35</CX>
         <CY>15</CY>
      </Size>
      <Text>%</Text>
      <TextColor>
            <R>125</R>
            <G>184</G>
            <B>235</B>
      </TextColor>
      <NoWrap>true</NoWrap>
      <AlignCenter>false</AlignCenter>
      <AlignRight>true</AlignRight>
      <AlignLeft>false</AlignLeft>
   </Label>
[/code:1]

Please this section in the bottom of the same file, along with the other <Pieces>.
[code:1]
      <Pieces>GW_Player_ExpGauge_Percent</Pieces>
      <Pieces>GW_Player_ExpGauge_Fig</Pieces>
[/code:1]


Now the hard part.

You need to figure out the positioning.  Look for this line:
[code:1]
<EQType>4</EQType>
[/code:1]

That is the XP gauge, use those XY coordinates as a start and play around on positioning.

As for patches, there is no way around it.  If you mod your own UI, you will have to patch it if the window change.
http://www.magelo.com/eq_view_profile.html?num=774007">Noriko . http://www.celestialrising.com">Celestial Rising . http://pub228.ezboard.com/bxevserverboards">Xev . http://www.beastlords.org/forums/viewtopic.php?t=1593">BST65.80/Xv h++ 3khp 3km ft13 r9 G++<3 e++ o+ T+++ L++ H+++@ f g b- t++>++++ D- !X

Noxdowne Draggout

Thanks Noriko, I finally got everything sorted out and it looks great !

Nox