Home Forum Downloads My Favorites Register FAQ

Go Back   EQInterface Forums > Developer Discussion > Test Server Changes
User Name
Password

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Old 12-28-2002, 02:08 AM   #1
Cairenn
Credendo Vides
 
Cairenn's Avatar
 
Join Date: Jul 2002
Posts: 3,866
Interface Author - Click to view interfaces
Default UI Changes, 19 Dec 02

IF you have a customized EQUI.xml file, open the file using any text editor (Word, WordPerfect, NotePad, etc.), and:

ADD:

<Include>EQUI_ShortDurationBuffWindow.xml</Include>

at the bottom of the <Include> list at the bottom of the file.

==============================================

IF you have a customized EQUI_SelectorWnd.xml file, open using a text editor, and:

Search/Find to:

<Button item = "SELW_BuffToggleButton">
<ScreenID>SELW_BuffToggleButton</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>210</X>
<Y>0</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Style_Checkbox>true</Style_Checkbox>
<TooltipReference>Effects</TooltipReference>
<ButtonDrawTemplate>
<Normal>A_BuffBtnNormal</Normal>
<Pressed>A_BuffBtnPressed</Pressed>
<Flyby>A_BuffBtnFlyby</Flyby>
<Disabled>A_BuffBtnNormal</Disabled> <!-- Will never be disabled -->
<PressedFlyby>A_BuffBtnPressedFlyby</PressedFlyby>
</ButtonDrawTemplate>
</Button>

Then, ADD:

>"SELW_SDBuffToggleButton">
<ScreenID>SELW_SDBuffToggleButton</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>240</X>
<Y>0</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Style_Checkbox>true</Style_Checkbox>
<TooltipReference>Short Duration Effects</TooltipReference>
<ButtonDrawTemplate>
<Normal>A_BuffBtnNormal</Normal>
<Pressed>A_BuffBtnPressed</Pressed>
<Flyby>A_BuffBtnFlyby</Flyby>
<Disabled>A_BuffBtnNormal</Disabled> <!-- Will never be disabled -->
<PressedFlyby>A_BuffBtnPressedFlyby</PressedFlyby>
</ButtonDrawTemplate>
</Button>

Then, in the:

<Button item = "SELW_HelpToggleButton">

section, CHANGE:

<Location>
<X>240</X>

to be:

<Location>
<X>270</X>

Then, Seach/Find to:
<Screen item = "SelectorWindow">

And CHANGE

<Size>
<CX>278</CX>
to be:

<Size>
<CX>308</CX>

Finally, ADD:

<Pieces>SELW_SDBuffToggleButton</Pieces>

to the <Pieces> section at the bottom of the file.

==============================================

IF you have a customized EQUI_LootWnd.xml file, open using a text editor, and:

Search/Find to:

<InvSlot item = "LW_LootSlot29">
<ScreenID>LW_LootSlot29</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>50</X>
<Y>560</Y>
</Location>
<Size>
<CX>40</CX>
<CY>40</CY>
</Size>
<Background>A_RecessedBox</Background>
<EQType>5029</EQType>
<ItemOffsetX>2</ItemOffsetX>
<ItemOffsetY>2</ItemOffsetY>
</InvSlot>

Then ADD:

<InvSlot item = "LW_LootSlot30">
<ScreenID>LW_LootSlot30</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>5</X>
<Y>600</Y>
</Location>
<Size>
<CX>40</CX>
<CY>40</CY>
</Size>
<Background>A_RecessedBox</Background>
<EQType>5030</EQType>
<ItemOffsetX>2</ItemOffsetX>
<ItemOffsetY>2</ItemOffsetY>
</InvSlot>

Then Search/Find to:

<Pieces>LW_LootSlot29</Pieces>

and ADD:

<Pieces>LW_LootSlot30</Pieces>

==============================================

IF you have a custom EQUI_PetInfoWindow.xml, open using a text editor, and:

Search/Find to:

<TooltipReference>Pet Sit Down/Pet Stand Up</TooltipReference>

Then DELETE the

/Pet Stand Up

portion of it.

Then immediately following:

<Button item = "PIW_SitButton">
<ScreenID>SitButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>56</X>
<Y>74</Y>
</Location>
<Size>
<CX>54</CX>
<CY>20</CY>
</Size>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<TooltipReference>Pet Sit Down/Pet Stand Up</TooltipReference>
<Style_Checkbox>false</Style_Checkbox>
<!--<RadioGroup/>-->
<Text>Sit</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<ButtonDrawTemplate>
<Normal>A_BtnNormal</Normal>
<Pressed>A_BtnPressed</Pressed>
<Flyby>A_BtnFlyby</Flyby>
<Disabled>A_BtnDisabled</Disabled>
<PressedFlyby>A_BtnPressedFlyby</PressedFlyby>
</ButtonDrawTemplate>
</Button>

ADD:

<!-- The stand button will ignore its own size/location and always be under the sit button (for smooth toggling) -->
<Button item = "PIW_StandButton">
<ScreenID>StandButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>56</X>
<Y>74</Y>
</Location>
<Size>
<CX>54</CX>
<CY>20</CY>
</Size>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<TooltipReference>Pet Stand Up</TooltipReference>
<Style_Checkbox>false</Style_Checkbox>
<!--<RadioGroup/>-->
<Text>Stand</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<ButtonDrawTemplate>
<Normal>A_BtnNormal</Normal>
<Pressed>A_BtnPressed</Pressed>
<Flyby>A_BtnFlyby</Flyby>
<Disabled>A_BtnDisabled</Disabled>
<PressedFlyby>A_BtnPressedFlyby</PressedFlyby>
</ButtonDrawTemplate>
</Button>

In the <Pieces> section, ADD

<Pieces>PIW_StandButton</Pieces>
__________________
"My friends, love is better than anger. Hope is better than fear. Optimism is better than despair. So let us
be loving, hopeful and optimistic. And we’ll change the world."


Co-Founder & Admin: MMOUI
FaceBook Profile, Page, Group
Avatar Image by RafM
Cairenn is offline   Reply With Quote
 




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:00 AM.


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