View Single Post
Old 09-24-2003, 03:33 PM   #3
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_BazaarSearchWnd.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:

<Button item = "BZR_QueryButton">


Immediately before that line, ADD:

<Button item = "BZR_FindTraderButton">
<ScreenID>BZR_FindTraderButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<TooltipReference>Create a path from you to the selected trader.</TooltipReference>
<AutoStretch>true</AutoStretch>
<LeftAnchorOffset>440</LeftAnchorOffset>
<TopAnchorOffset>24</TopAnchorOffset>
<RightAnchorOffset>530</RightAnchorOffset>
<BottomAnchorOffset>4</BottomAnchorOffset>
<TopAnchorToTop>false</TopAnchorToTop>
<BottomAnchorToTop>false</BottomAnchorToTop>
<LeftAnchorToLeft>true</LeftAnchorToLeft>
<RightAnchorToLeft>true</RightAnchorToLeft>
<Text>Find Trader</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>
<!--<SoundPressed/>-->
<!--<SoundUp/>-->
<!--<SoundFlyby/>-->
</Button>


Find:

<Button item = "BZR_QueryButton">
<ScreenID>BZR_QueryButton</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<TooltipReference>Search the Bazaar for a list of items that match your search criteria.</TooltipReference>
<Location>
<X>37</X>
<Y>345</Y>
</Location>
<Size>
<CX>60</CX>
<CY>20</CY>
</Size>
<Text>Find</Text>


CHANGE:

<Location>
<X>37</X>
<Y>345</Y>
</Location>

TO:

<Location>
<X>28</X>
<Y>345</Y>
</Location>

CHANGE:

<Size>
<CX>60</CX>
<CY>20</CY>
</Size>

TO:

<Size>
<CX>78</CX>
<CY>20</CY>
</Size>

CHANGE:

<Text>Find</Text>

TO:

<Text>Find Items</Text>


Find:

<Pieces>BZR_RequestItemButton</Pieces>


Immediately after that line, ADD:

<Pieces>BZR_FindTraderButton</Pieces>
Cairenn is offline   Reply With Quote