Home Forum Downloads My Favorites Register FAQ Mark Forums Read

Go Back   EQInterface Forums > Developer Discussion > XML modification help.
User Name
Password

Reply
 
Thread Tools Display Modes
Old 08-05-2002, 12:31 PM   #1
Sscaly
A Gray Wolf
 
Join Date: Aug 2002
Posts: 6
Default A couple of questions.



Picture should speak for itself.
Sscaly is offline   Reply With Quote
Old 08-05-2002, 12:39 PM   #2
Chronwaas
Skinner Extraordinaire
 
Chronwaas's Avatar
 
Join Date: Jul 2002
Server: Saryrn
Posts: 421
Interface Author - Click to view interfaces
Default

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.
Chronwaas is offline   Reply With Quote
Old 08-05-2002, 12:41 PM   #3
Sscaly
A Gray Wolf
 
Join Date: Aug 2002
Posts: 6
Default

Then it is quite fortunate that it says HP/AC values above the XP/AAXP percentages and not something else.
Sscaly is offline   Reply With Quote
Old 08-05-2002, 12:53 PM   #4
Vanje
A Snow Cougar
 
Join Date: Jul 2002
Posts: 43
Default

Sscaly, do you just need the code to add or are you looking for someone to make this for you?
Vanje is offline   Reply With Quote
Old 08-05-2002, 12:56 PM   #5
Sscaly
A Gray Wolf
 
Join Date: Aug 2002
Posts: 6
Default

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.
Sscaly is offline   Reply With Quote
Old 08-05-2002, 01:07 PM   #6
Vanje
A Snow Cougar
 
Join Date: Jul 2002
Posts: 43
Default

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.
Vanje is offline   Reply With Quote
Old 08-05-2002, 01:38 PM   #7
Sscaly
A Gray Wolf
 
Join Date: Aug 2002
Posts: 6
Default

That's pretty much greek to me. If I put the needed files up for download, could you do it? :/
Sscaly is offline   Reply With Quote
Old 08-05-2002, 07:59 PM   #8
Vanje
A Snow Cougar
 
Join Date: Jul 2002
Posts: 43
Default

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.
Vanje is offline   Reply With Quote
Old 08-06-2002, 06:42 AM   #9
Sscaly
A Gray Wolf
 
Join Date: Aug 2002
Posts: 6
Default

Sscaly is offline   Reply With Quote
Old 08-07-2002, 12:10 AM   #10
Vanje
A Snow Cougar
 
Join Date: Jul 2002
Posts: 43
Default

Here ya go:




Right click and Save Target As...

http://forums.endless-stupidity.com...layerWindow.xml
Vanje is offline   Reply With Quote
Old 08-07-2002, 12:47 AM   #11
Rebaidah
An Icepaw Kobold
 
Join Date: Jul 2002
Posts: 80
Interface Author - Click to view interfaces
Default

Oh hey I like that hotkey box w/5 inv slots, can you u/l that file?
Rebaidah is offline   Reply With Quote
Old 08-07-2002, 09:05 AM   #12
Sscaly
A Gray Wolf
 
Join Date: Aug 2002
Posts: 6
Default

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.
Sscaly is offline   Reply With Quote
Old 08-07-2002, 11:13 PM   #13
marcin
A Snow Griffin
 
Join Date: Aug 2002
Server: Bertoxxulous
Posts: 52
Interface Author - Click to view interfaces
Default

rename your file to .txt and then ul and make a note that the user has to rename the file to .xml again...
marcin is offline   Reply With Quote
Old 08-10-2002, 01:22 AM   #14
Rebaidah
An Icepaw Kobold
 
Join Date: Jul 2002
Posts: 80
Interface Author - Click to view interfaces
Default

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



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off


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


vBulletin Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
© MMOUI