View Single Post
Old 05-14-2003, 11:04 AM   #4
Cairenn
Credendo Vides
 
Cairenn's Avatar
 
Join Date: Jul 2002
Posts: 3,866
Interface Author - Click to view interfaces
Default

IF you have a custom EQUI_PlayerWindow.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:

<Gauge item = "Pet_HP">

Before that, ADD:

<Label item ="Player_HPLabel">
<ScreenID>HPLabel</ScreenID>
<EQType>19</EQType>
<RelativePosition>true</RelativePosition>
<Location>
<X>3</X>
<Y>29</Y>
</Location>
<Size>
<CX>60</CX>
<CY>12</CY>
</Size>
<Text>Playername123456</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>

<Label item ="Player_HPPercLabel">
<ScreenID>HPPerLabel</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>64</X>
<Y>29</Y>
</Location>
<Size>
<CX>16</CX>
<CY>12</CY>
</Size>
<Text>%</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>

Then Find:

<Pieces>Pet_HP</Pieces>

After that, ADD:

<Pieces>Player_HPLabel</Pieces>
<Pieces>Player_HPPercLabel</Pieces>
Cairenn is offline