Home Forum Downloads My Favorites Register FAQ

Go Back   EQInterface Forums > General Discussion > Request
User Name
Password

Reply
 
Thread Tools Display Modes
Old 07-27-2002, 04:19 PM   #1
Baadan
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Lightbulb Need help changing inventory slots in XML

This is what it looks like:



I LOOOOOVE it, but, how can I change the three equipment slots to what I want them to be? I would like to have Primary, Inventory Slot 1, and Inventory Slot 5 - anyone know how to do this?
__________________
-Baadan

Last edited by Baadan : 07-27-2002 at 08:32 PM.
Baadan is offline   Reply With Quote
Old 07-27-2002, 09:24 PM   #2
Geddine
A Wooly Rhino
 
Join Date: Jul 2002
Server: Morell-Thule
Posts: 77
Interface Author - Click to view interfaces
Default

go into the XML file for it. Go to the section which desribes these 3 items and change their <EQType> to the numbers you need.

I'd give you the numbers and everything but I am at work and they are not anywhere near me. But I hope this helps.
__________________
Geddine
"Of all the things I've lost, I miss my mind the most"
Geddine is offline   Reply With Quote
Old 07-28-2002, 12:18 AM   #3
Baadan
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Default

Is that it???
I found the three spots where i wanted to change, I cant remember exact|y what it said, but it was something |ike:

InventorySlot=Legs where the change was pretty obvious but I wasnt sure if that wou|d do it or not.

I'll check that and get back to you, thanks for the info.

Last edited by Baadan : 07-28-2002 at 02:10 PM.
Baadan is offline   Reply With Quote
Old 07-28-2002, 01:10 AM   #4
guice
Keeper of the Hampster
 
guice's Avatar
 
Join Date: Jul 2002
Server: Mithaniel Marr
Posts: 598
Interface Author - Click to view interfaces
Send a message via AIM to guice Send a message via Yahoo to guice
Default

Baadan?! LOL

Do note, the Pet buttons are broke. Due to VI's wisdom to hard code values, the buttons have been done that way and currently don't work on that skin.
guice is offline   Reply With Quote
Old 07-28-2002, 04:51 AM   #5
Baadan
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Default heya

hey there Sithr/necro-who's-name-i-cant-remember :P

I haven't even tried the buttons yet lol, thanks for the heads up tho, I guess I'll just use my hotkeys for now and just get used to the big spell box incase it gets fixed.

Last edited by Baadan : 07-28-2002 at 02:11 PM.
Baadan is offline   Reply With Quote
Old 07-28-2002, 02:16 PM   #6
Baadan
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Default

I opened up the XML file that I wanted to change...but I couldn't get the cursor to sit in the text so I could delete/change it.

Do I need a special program to edit XML? If so where can I get one?

Quote:
<!-- IS_PRIMARY 13
-->
- <InvSlot item="InvSlot_Prime">
<ScreenID>InvSlot_Prime</ScreenID>
- <!-- <Font>3</Font>
-->
<RelativePosition>true</RelativePosition>
- <Location>
<X>58</X>
<Y>158</Y>
</Location>
- <Size>
<CX>40</CX>
<CY>40</CY>
</Size>
<Background>A_InvPrimary</Background>
<EQType>13</EQType>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
- <!-- <TooltipReference/>
-->
</InvSlot>
- <!-- IS_LEGS 18
-->
- <InvSlot item="InvSlot_Legs">
<ScreenID>InvSlot_Legs</ScreenID>
- <!-- <Font>3</Font>
-->
<RelativePosition>true</RelativePosition>
- <Location>
<X>58</X>
<Y>200</Y>
</Location>
- <Size>
<CX>40</CX>
<CY>40</CY>
</Size>
<Background>A_InvLegs</Background>
<EQType>18</EQType>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
- <!-- <TooltipReference/>
-->
</InvSlot>
- <InvSlot item="InvSlot_8">
<ScreenID>InvSlot_8</ScreenID>
- <!-- <Font>3</Font>
-->
<RelativePosition>true</RelativePosition>
- <Location>
<X>58</X>
<Y>242</Y>
</Location>
- <Size>
<CX>40</CX>
<CY>40</CY>
</Size>
<Background>A_RecessedBox</Background>
<EQType>29</EQType>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
- <!-- <TooltipReference/>
-->
</InvSlot>
This is the relevant (I think) info in the code.

I want Primary, Inventory Slot 1 and 5 to be visible, anyone able to tell me how?
Baadan is offline   Reply With Quote
Old 07-29-2002, 11:58 AM   #7
Baadan
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Default

bump hehe

please help me!!
Baadan is offline   Reply With Quote
Old 07-29-2002, 01:25 PM   #8
JMinara
A Ghoul
 
Join Date: Jul 2002
Posts: 11
Default

Code:
<!-- IS_INV1 22 --> <InvSlot item="InvSlot_1"> <ScreenID>InvSlot_1</ScreenID> <!-- <Font>3</Font>--> <RelativePosition>true</RelativePosition> <Location> <X>58</X> <Y>200</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_InvLegs</Background> <EQType>22</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <!-- <TooltipReference/>--> </InvSlot> <InvSlot item="InvSlot_5"> <ScreenID>InvSlot_5</ScreenID> <!-- <Font>3</Font>--> <RelativePosition>true</RelativePosition> <Location> <X>58</X> <Y>242</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>26</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <!-- <TooltipReference/>--> </InvSlot>


To install:
1) Remove everything you quoted after <!-- IS_LEGS 18 -->.
2) Replace with the above
3) Change <Pieces>InvSlot_Legs</Pieces> to <Pieces>InvSlot_1</Pieces>
4) Change <Pieces>InvSlot_8</Pieces> to <Pieces>InvSlot_5</Pieces>
5) Save, test :P

Should work. lemme know
JMinara is offline   Reply With Quote
Old 07-29-2002, 03:01 PM   #9
Baadan
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Default thank ya!

I kinda understand what is going on there but I can't seem to be able to edit the EQUI_CastSpellWnd.xml file. When I open it it used Internet Explorer but I can't change any of the text, I can copy and paste it, but not cut, delete, backspace, add, whatever text to the file and I don't know why.

Do I need an XML editor or something to make the changes able to happen? With HTML I could just use WordPad or any prog like that, but do I need a special XML one? If yes where from?

Thanks again
Baadan is offline   Reply With Quote
Old 07-29-2002, 03:49 PM   #10
Garlaen
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Interface Author - Click to view interfaces
Default

You don't need a specific editor to make your changes. IE just views the XML. You can use notepad, for example, to edit/save XML changes.
Garlaen is offline   Reply With Quote
Old 07-30-2002, 12:28 AM   #11
Nennayan
A Shissar Disciple
 
Nennayan's Avatar
 
Join Date: Jul 2002
Server: Brell Serilis
Posts: 147
Send a message via ICQ to Nennayan Send a message via AIM to Nennayan
Default

Until they make a graphical editor, DOS Edit is still the best!

I would say Notepad, but it won't open files of over 100kb and it won't automatically find and replace all instances of a text string. It makes changing the graphics used by any given element much less tedious for me.
__________________
Nennayan is offline   Reply With Quote
Old 07-30-2002, 01:09 AM   #12
guice
Keeper of the Hampster
 
guice's Avatar
 
Join Date: Jul 2002
Server: Mithaniel Marr
Posts: 598
Interface Author - Click to view interfaces
Send a message via AIM to guice Send a message via Yahoo to guice
Default

DOS Edit, Notepage, UltraEdit or even on the high end, XML spy ( I use that ). All will work.

As stated before, IE is only an XML viewer. You can't do anything else with it.
__________________
Sithr, 65th Transcendent
Officer/Leader of Chronology
Mithaniel Marr
http://www.chronology-guild.org/
guice is offline   Reply With Quote
Old 07-30-2002, 02:35 AM   #13
Baadan
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Default

how do i open it into Notepad? Do i just copy and past the whole file then edit what JMinara said? How do I save it? is it automatically saved as a .XML file?
Baadan is offline   Reply With Quote
Old 07-30-2002, 06:49 AM   #14
Nennayan
A Shissar Disciple
 
Nennayan's Avatar
 
Join Date: Jul 2002
Server: Brell Serilis
Posts: 147
Send a message via ICQ to Nennayan Send a message via AIM to Nennayan
Default

Open notepad and drag the icon of the xml file into the notepad window.

If it's over 100kb, you'll be asked if you want to use wordpad. Click yes.

If you have a better text editor installed, then just open that and drag the icon to it instead.

Some word processor programs will ask you what type of file you're opening, rich text format, plain text, etc. Just hit plain text.

When you're done editing, just hit save, not save as.
Nennayan is offline   Reply With Quote
Old 07-30-2002, 10:22 AM   #15
Garlaen
A Ghoul
 
Join Date: Jul 2002
Posts: 19
Interface Author - Click to view interfaces
Default

I actually use EditPad .
Garlaen is offline   Reply With Quote
Reply




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 04:54 AM.


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