View Single Post
Old 05-16-2003, 04:53 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_BigBankWnd.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:

<?xml version = "1.0"?>
<XML ID = "EQInterfaceDefinitionLanguage">
<Schema xmlns = "EverQuestData" xmlns:dt = "EverQuestDataTypes"/>

CHANGE to be:

<?xml version="1.0" encoding="us-ascii"?>
<XML ID="EQInterfaceDefinitionLanguage">
<Schema xmlns="EverQuestData" xmlns:dt="EverQuestDataTypes" />

Find:

<Label item ="BIGB_BankerName">

Immediately before that, ADD:

<Label item="BIGB_SharedBankLabel">
<ScreenID>BIGB_SharedBankLabel</ScreenID>
<Font>3</Font>
<Text>Shared Bank</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<Size>
<CX>80</CX>
<CY>17</CY>
</Size>
<AlignCenter>true</AlignCenter>
<Location>
<X>110</X>
<Y>198</Y>
</Location>
</Label>

Find:

<Button item = "BIGB_Money0">

Immediately before that, ADD:

<InvSlot item="BIGB_SharedBankSlot0">
<ScreenID>BIGB_SharedBankSlot0</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>110</X>
<Y>216</Y>
</Location>
<Size>
<CX>40</CX>
<CY>40</CY>
</Size>
<Background>A_RecessedBox</Background>
<EQType>2500</EQType>
<ItemOffsetX>2</ItemOffsetX>
<ItemOffsetY>2</ItemOffsetY>
</InvSlot>
<InvSlot item="BIGB_SharedBankSlot1">
<ScreenID>BIGB_SharedBankSlot1</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>150</X>
<Y>216</Y>
</Location>
<Size>
<CX>40</CX>
<CY>40</CY>
</Size>
<Background>A_RecessedBox</Background>
<EQType>2501</EQType>
<ItemOffsetX>2</ItemOffsetX>
<ItemOffsetY>2</ItemOffsetY>
</InvSlot>

Find:

<Pieces>BIGB_BankSlot15</Pieces>

ADD:

<Pieces>BIGB_SharedBankSlot0</Pieces>
<Pieces>BIGB_SharedBankSlot1</Pieces>

Find:

<Pieces>BIGB_DoneButton</Pieces>

ADD:

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