EQInterface Forums

EQInterface Forums (http://www.eqinterface.com/forums/index.php)
-   XML modification help. (http://www.eqinterface.com/forums/forumdisplay.php?f=30)
-   -   A couple of questions. (http://www.eqinterface.com/forums/showthread.php?t=672)

Sscaly 08-05-2002 12:31 PM

A couple of questions.
 


Picture should speak for itself.

Chronwaas 08-05-2002 12:39 PM

You are not going to get a value for the two Exp values. VI is not giving out those values. Only the Bar or the Percentage. The Client is not designed to give you the Actual value for those two fields.

Sscaly 08-05-2002 12:41 PM

Then it is quite fortunate that it says HP/AC values above the XP/AAXP percentages and not something else. :p

Vanje 08-05-2002 12:53 PM

Sscaly, do you just need the code to add or are you looking for someone to make this for you?

Sscaly 08-05-2002 12:56 PM

Ideally, I'd like to have someone do it, but as I have nowhere to host something like a skin (afraid too many people would download it, and I don't have alot of bandwidth :( ), the code would be good too.

Vanje 08-05-2002 01:07 PM

Ok, for the file: EQUI_PlayerWindow.xml (You'll need to adjust the X,Y values)


PHP Code:
 Place the following code somewhere above:     <Screen item "PlayerWindow">

________________________________________________


<Label item ="PW_HPLabel">
        <
Font>2</Font>
        <
RelativePosition>true</RelativePosition>
        <
Location>
            <
X>3</X>
            <
Y>1</Y>
        </
Location>
        <
Size>
            <
CX>21</CX>
            <
CY>14</CY>
        </
Size>
        <
Text>HP:</Text>
        <
TextColor>
                <
R>255</R>
                <
G>255</G>
                <
B>255</B>
        </
TextColor>
        <
NoWrap>true</NoWrap>
        <
AlignCenter>false</AlignCenter>
        <
AlignRight>false</AlignRight>
    </
Label>
    <
Label item ="PW_CurrentHP">
        <
ScreenID>HPNumberLabel</ScreenID>
        <
EQType>17</EQType>
        <
Font>2</Font>
        <
RelativePosition>true</RelativePosition>
        <
Location>
            <
X>10</X>
            <
Y>1</Y>
        </
Location>
        <
Size>
            <
CX>35</CX>
            <
CY>14</CY>
        </
Size>
        <
Text>0</Text>
        <
TextColor>
                <
R>255</R>
                <
G>255</G>
                <
B>255</B>
        </
TextColor>
        <
NoWrap>true</NoWrap>
        <
AlignCenter>false</AlignCenter>
        <
AlignRight>true</AlignRight>
        <
AlignLeft>false</AlignLeft>
    </
Label>
    <
Label item ="PW_HPDivider">
        <
Font>2</Font>
        <
RelativePosition>true</RelativePosition>
        <
Location>
            <
X>48</X>
            <
Y>1</Y>
        </
Location>
        <
Size>
            <
CX>8</CX>
            <
CY>14</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>
    <
Label item ="PW_MaxHP">
        <
EQType>18</EQType>
        <
Font>2</Font>
        <
RelativePosition>true</RelativePosition>
        <
Location>
            <
X>53</X>
            <
Y>1</Y>
        </
Location>
        <
Size>
            <
CX>37</CX>
            <
CY>14</CY>
        </
Size>
        <
Text>0</Text>
        <
TextColor>
                <
R>255</R>
                <
G>255</G>
                <
B>255</B>
        </
TextColor>
        <
NoWrap>true</NoWrap>
        <
AlignCenter>false</AlignCenter>
        <
AlignRight>false</AlignRight>
        <
AlignLeft>true</AlignLeft>
    </
Label>

    <
Label item ="PW_AC">
        <
ScreenID>ACLabel</ScreenID>
        <
Font>2</Font>
        <
RelativePosition>true</RelativePosition>
        <
Location>
            <
X>91</X>
            <
Y>1</Y>
        </
Location>
        <
Size>
            <
CX>21</CX>
            <
CY>14</CY>
        </
Size>
        <
Text>AC</Text>
        <
TextColor>
                <
R>255</R>
                <
G>255</G>
                <
B>255</B>
        </
TextColor>
        <
NoWrap>true</NoWrap>
        <
AlignCenter>false</AlignCenter>
        <
AlignRight>false</AlignRight>
    </
Label>
    <
Label item ="PW_ACNumber">
        <
ScreenID>ACNumberLabel</ScreenID>
        <
EQType>22</EQType>
        <
Font>2</Font>
        <
RelativePosition>true</RelativePosition>
        <
Location>
            <
X>112</X>
            <
Y>1</Y>
        </
Location>
        <
Size>
            <
CX>27</CX>
            <
CY>14</CY>
        </
Size>
        <
Text>0</Text>
        <
TextColor>
                <
R>255</R>
                <
G>255</G>
                <
B>255</B>
        </
TextColor>
        <
NoWrap>true</NoWrap>
        <
AlignCenter>true</AlignCenter>
        <
AlignRight>false</AlignRight>
    </
Label




PHP Code:
 Place the following code at the bottom of the file:

____________________________________________

<Pieces>PW_HPLabel</Pieces>
        <
Pieces>PW_CurrentHP</Pieces>
        <
Pieces>PW_HPDivider</Pieces>
        <
Pieces>PW_MaxHP</Pieces>
        <
Pieces>PW_AC</Pieces>
        <
Pieces>PW_ACNumber</Pieces



I'm not sure I can sufficiently explain how to change the inventory items out.

Sscaly 08-05-2002 01:38 PM

That's pretty much greek to me. If I put the needed files up for download, could you do it? :/

Vanje 08-05-2002 07:59 PM

Sure can ;)

If you can let me know which of the inventory items you want on the other part, post that file and let me know which ones you want to see as well.

Sscaly 08-06-2002 06:42 AM

http://tallon.homestead.com/files/EQUI_PlayerWindow.xml

Vanje 08-07-2002 12:10 AM

Here ya go:




Right click and Save Target As...

http://forums.endless-stupidity.com...layerWindow.xml

Rebaidah 08-07-2002 12:47 AM

Oh hey I like that hotkey box w/5 inv slots, can you u/l that file?

Sscaly 08-07-2002 09:05 AM

Thanks a bunch :)
And unfortunately, no. It won't let me upload an .xml file, and I won't use my own webspace for it as my upload is very limited.

marcin 08-07-2002 11:13 PM

rename your file to .txt and then ul and make a note that the user has to rename the file to .xml again...

Rebaidah 08-10-2002 01:22 AM

BUMP! I still want this hot key box if there is anyway for you to make it available. =)


All times are GMT -5. The time now is 08:17 AM.

vBulletin Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.