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 09-14-2008, 04:53 AM   #1
Stoplaughin
A Tundra Mammoth
 
Join Date: Mar 2004
Posts: 60
Interface Author - Click to view interfaces
Default SIDL changes with the 9-3-08 patch

LayoutVertical/LayoutHorizontal
  • Vertical or horizontal layout can be applied to any control.
  • It basically takes all <Pieces> and places them in a line vertically or horizontally. Sizing the control accordingly.
  • You can specify the pixel spacing between the pieces.
  • It will not move anchored pieces.
  • The control will size to fit some anchored pieces. Not sure yet which ones will and will not size the control.
  • It uses the <Size>, but ignores the <Point>.
  • For pieces that are dynamic like buffs, group members, container slots, etc., they will not be placed in the control and it will not make room for them if they are not supposed to be displayed. But if they suddenly appear, the control will dynamically size to add them.
  • It places the the pieces in the order they are declared in the parent control.
  • They can be nested. See TemplateContainer.
  • Its kind of buggy. For example if you just have a label for buff 0, EQ will crash. If you have the label and the button it works fine. Buff buttons don't seem to size parent control.
  • Will size windows with hard coded sizes!
You can find a couple of examples at http://www.eqinterface.com/download...nfo.php?id=5663 and http://www.eqinterface.com/download...nfo.php?id=5662.

TemplateContainer
I'm not sure what this is for other than a container. In the default UI its used to nest layouts. Although its supposed to be a template, I haven't seen any pieces in the template container inherit and properties of the template you specify.

TopLevelWndowList
From the sound and look, it may have the potential to allow you to create new windows. I haven't been able to create any though.
Stoplaughin is offline   Reply With Quote
Old 09-17-2008, 03:55 PM   #2
Stoplaughin
A Tundra Mammoth
 
Join Date: Mar 2004
Posts: 60
Interface Author - Click to view interfaces
Default

EDIT:
Sizable window inside of another window will never work. There is no place for EQ to save the size of the inside window. So the stuff below will only work until someone logs in again, but I'll leave the information here for informational purposes anyways. You might be able to get it to work if you make the top level item for the window a SC without borders where you want it to size and you make the child SC anchored so it can stretch and give it borders where the top level one doesn't.

I found another neat trick with LayoutVertical/LayoutHorizontal that allows a the user to size a window only in the direction you want them to. Only vertical or horizontal sizing. All other borders can be used to move the window.

Your main Screen (SC) element for your window must be changed to a TemplateContainer (TC). There is a bug with positioning when nesting TCs and SCs. TCs are subsets of SCs so they function almost identically. Then, you give your main TC either a vertical or horizontal layout property. You give it a border, and leave out the sides you want the user to be able to size. In your main TC you only have one piece which is a SC, because TCs cannot be sizable. You make this SC sizable and give it borders on the sides you want the user to be able to size it. With the location you can also tweak the relative positioning. Inside of the SC you can place your window elements, probably anchored so that they can size with the window.

Make sure any sub elements are TCs not SCs or you will see the positioning bug. There was also another bug. When I tried to only allow the window to be sized from the bottom, after the first sizing I could not size it again. Only allowing the top to be sized works, but sizing is kind of buggy. When you first move your mouse to size it bigger, you cannot size it smaller and visa-versa. The further you size it the faster it increases with size. All this makes it take some work to size, so it should only probably be used on things that don't need to be sized often.

Here is a little example with the buff window:
Code:
<Button item="BW_Buff0_Button"> <ScreenID>Buff0</ScreenID> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>false</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>40</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> ... <Label item="BW_Buff0"> <EQType>500</EQType> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>80</CX> <CY>13</CY> </Size> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> ... <Label item="BW_Buff0_Num"> <Font>1</Font> <Location> <X>84</X> <Y>4</Y> </Location> <Size> <CX>44</CX> <CY>12</CY> </Size> <Text>1</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> </Label> ... <LayoutVertical item="MUI2_L_Ver0"> <Padding>0</Padding> <Resize>true</Resize> </LayoutVertical> ... <TemplateContainer item="MUI2_BW_Spell0"> <Style_Transparent>true</Style_Transparent> <Size> <CX>120</CX> <CY>19</CY> </Size> <Pieces>BW_Buff0</Pieces> <Pieces>BW_Buff0_Num</Pieces> <Pieces>BW_Buff0_Button</Pieces> </TemplateContainer> ... <TemplateContainer item="MUI2_BW_BuffCont"> <Layout>MUI2_L_Ver0</Layout> <RelativePosition>true</RelativePosition> <Location> <X>-1</X> <Y>0</Y> </Location> <Size> <CX>120</CX> <CY>20</CY> </Size> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Style_Transparent>true</Style_Transparent> <Style_Titlebar>false</Style_Titlebar> <Style_Closebox>false</Style_Closebox> <Style_Minimizebox>false</Style_Minimizebox> <Style_Border>true</Style_Border> <Style_Sizable>false</Style_Sizable> <Pieces>MUI2_BW_Spell0</Pieces> <Pieces>MUI2_BW_Spell1</Pieces> <Pieces>MUI2_BW_Spell2</Pieces> <Pieces>MUI2_BW_Spell3</Pieces> <Pieces>MUI2_BW_Spell4</Pieces> <Pieces>MUI2_BW_Spell5</Pieces> <Pieces>MUI2_BW_Spell6</Pieces> <Pieces>MUI2_BW_Spell7</Pieces> <Pieces>MUI2_BW_Spell8</Pieces> <Pieces>MUI2_BW_Spell9</Pieces> <Pieces>MUI2_BW_Spell10</Pieces> <Pieces>MUI2_BW_Spell11</Pieces> <Pieces>MUI2_BW_Spell12</Pieces> <Pieces>MUI2_BW_Spell13</Pieces> <Pieces>MUI2_BW_Spell14</Pieces> <Pieces>MUI2_BW_Spell15</Pieces> <Pieces>MUI2_BW_Spell16</Pieces> <Pieces>MUI2_BW_Spell17</Pieces> <Pieces>MUI2_BW_Spell18</Pieces> <Pieces>MUI2_BW_Spell19</Pieces> <Pieces>MUI2_BW_Spell20</Pieces> <Pieces>MUI2_BW_Spell21</Pieces> <Pieces>MUI2_BW_Spell22</Pieces> <Pieces>MUI2_BW_Spell23</Pieces> <Pieces>MUI2_BW_Spell24</Pieces> </TemplateContainer> <Screen item="MUI2_BW_BuffCont2"> <RelativePosition>true</RelativePosition> <Location> <X>0</X> <Y>-1</Y> </Location> <Size> <CX>120</CX> <CY>476</CY> </Size> <DrawTemplate>MUI2_WDT_TopOnly</DrawTemplate> <Style_Transparent>true</Style_Transparent> <Style_Titlebar>false</Style_Titlebar> <Style_Closebox>false</Style_Closebox> <Style_Minimizebox>false</Style_Minimizebox> <Style_Border>true</Style_Border> <Style_Sizable>true</Style_Sizable> <Pieces>MUI2_BW_BuffCont</Pieces> </Screen> <TemplateContainer item="BuffWindow"> <Layout>MUI2_L_Ver0</Layout> <RelativePosition>false</RelativePosition> <Location> <X>0</X> <Y>0</Y> </Location> <Size> <CX>122</CX> <CY>21</CY> </Size> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_NoTop</DrawTemplate> <Style_Titlebar>false</Style_Titlebar> <Style_Closebox>false</Style_Closebox> <Style_Minimizebox>false</Style_Minimizebox> <Style_Border>true</Style_Border> <Style_Sizable>false</Style_Sizable> <Pieces>Screen:MUI2_BW_BuffCont2</Pieces> </TemplateContainer>

Last edited by Stoplaughin : 09-17-2008 at 05:16 PM.
Stoplaughin is offline   Reply With Quote
Old 09-17-2008, 10:23 PM   #3
Haliken
Quintessence of EQUI XML
 
Haliken's Avatar
 
Join Date: Sep 2002
Posts: 773
Interface Author - Click to view interfaces
Default

The main issue I've been wrangling with is it adding width/height for things I don't want it to. There's an easy solution though: say it's adding 44 width to my window that I don't want, create a dummy button with -44 width. The negative value will be added to (and so end up subtracting from) the total calculated width.

If you use, for example, a horizontal layout, but have an object that autostretches to the width of the object that uses said layout, EQ will crash.

I've often used buttons as my dummy objects but am not sure if another object type would have a smaller impact on performance.

Enok

Last edited by Haliken : 09-17-2008 at 11:22 PM.
Haliken is offline   Reply With Quote
Old 09-18-2008, 10:42 AM   #4
Savok
On tour since '99
 
Join Date: Sep 2002
Server: Innoruuk forever!
Posts: 473
Interface Author - Click to view interfaces
Default

I noticed that the pet winodw only resizes horizintally but I didn't see the layout command in there at all. Can you give an example of code?
__________________
Gold: 03/16/99 - 03/15/12 Silver: 03/16/12 - 03/15/18 Done:03/16/18
And with a heavy heart I bid adieu to Everquest Live.
Savok is offline   Reply With Quote
Old 09-18-2008, 03:45 PM   #5
Stoplaughin
A Tundra Mammoth
 
Join Date: Mar 2004
Posts: 60
Interface Author - Click to view interfaces
Default

Quote:
Originally Posted by Savok
I noticed that the pet winodw only resizes horizintally but I didn't see the layout command in there at all. Can you give an example of code?

The pet window is hard coded to only size horizontally. You can emulate the same thing, except the borders that do not size cannot be used to move the window. So you would need a title bar to move it. If you do not want the top of the window to be sizable, you can replace the top border with a title bar that looks like a border.

The basic idea is to create a sizable Screen with a draw template that has borders with zero width and height on the sides you do not want to user to be able to size. You then make a child Screen and anchor it so it fills the parent window. On the child Screen you give it borders on the sides the parent doesn't. Place all your window components inside the child window. In order to move the window the parent window will need a title bar. The title bar is placed underneath the top border. You can specify no top border and make your title bar look like a border, or you can take that into account when drawing your images. One thing you have to remember about sizing windows is that their size comes from the ini file not the size in the XML file. If someone loads your window and the unsizable dimension was different than what your window was made for, they either have to edit their ini file or uncheck "Keep Your Layout" when reloading the UI.

You can find an example at http://www.eqinterface.com/download....php?s=&id=5665. It allows you to size horizontally and vertically, but if you only wanted it to size horizontally you would replace MUI2_WDT_NoTop with:
Code:
<WindowDrawTemplate item="MUI2_WDT_NoTop"> <Background></Background> <Titlebar> <Left>MUI2_A_WndNull</Left> <Middle>MUI2_A_WndHor</Middle> <Right>MUI2_A_WndNull</Right> <OverlapLeft>0</OverlapLeft> <OverlapTop>0</OverlapTop> <OverlapRight>0</OverlapRight> <OverlapBottom>0</OverlapBottom> </Titlebar> <Border> <Top>MUI2_A_WndNull</Top> <Bottom>MUI2_A_WndNull</Bottom> <!-- now only sizable horizontally --> <Left>MUI2_A_WndVer</Left> <Right>MUI2_A_WndVer</Right> <TopLeft>MUI2_A_WndNull</TopLeft> <TopRight>MUI2_A_WndNull</TopRight> <BottomLeft>MUI2_A_WndNull</BottomLeft> <BottomRight>MUI2_A_WndNull</BottomRight> <RightTop>MUI2_A_WndNull</RightTop> <RightBottom>MUI2_A_WndNull</RightBottom> <LeftTop>MUI2_A_WndNull</LeftTop> <LeftBottom>MUI2_A_WndNull</LeftBottom> <OverlapLeft>0</OverlapLeft> <OverlapTop>0</OverlapTop> <OverlapRight>0</OverlapRight> <OverlapBottom>0</OverlapBottom> </Border> </WindowDrawTemplate>
Stoplaughin is offline   Reply With Quote
Old 09-18-2008, 05:51 PM   #6
derred
A Ghoul
 
Join Date: Dec 2002
Posts: 11
Interface Author - Click to view interfaces
Default

OMG, Sizable buff windows...with buff labels.


You rule!

One question: What would I need to do to flip the buff name to the other side?
__________________
-red

Last edited by derred : 09-18-2008 at 06:41 PM.
derred is offline   Reply With Quote
Old 09-18-2008, 08:38 PM   #7
Stoplaughin
A Tundra Mammoth
 
Join Date: Mar 2004
Posts: 60
Interface Author - Click to view interfaces
Default

Quote:
Originally Posted by derred
OMG, Sizable buff windows...with buff labels.


You rule!

One question: What would I need to do to flip the buff name to the other side?

Add <AlignRight>true</AlignRight> to every <Label item="BW_BuffXX">.
Stoplaughin is offline   Reply With Quote
Old 09-20-2008, 03:48 AM   #8
Stoplaughin
A Tundra Mammoth
 
Join Date: Mar 2004
Posts: 60
Interface Author - Click to view interfaces
Default

I have been trying to find a way to click a button that makes a window bigger or smaller. I see a few ways it could possibly work.

You could give the window a layout so that it would size to the contents. Then you could place an object that exists only when you want the window larger on the far edge. The only things I can think of though that may or or may not exist are spell gems, container slots, and group members. There are more things that may not have a value, but the only things that do not have a size in a window with a layout is an object that truly does not exist. None of those objects work well for general use though. Togglable buttons like sit/stand, run/walk, and invite/follow work too. These would probably be more useful. The most useful would be LFG/LFP on/off since pressing them doesn't affect your character. Other players probably wouldn't like that much though. The speaker for voice chat should work too. The lag would suck when you turn it on and it would only work for people who don't care about the feature. I haven't tested it, but dynamic animations may work.

You could put a child screen inside a screen with a layout. I tested giving the child window a minimize box, but it would not cause the parent window to size. Giving the child window a close box does work though. This method opens up a few interesting possibilities. The problem though is once you close the child window there is nothing you can press to open it again. The other problem is every time you load your character the child window will be open again, because EQ does not save its state.

There are a few methods I tried that didn't work at all too.
  • Adding an object that is very large to a tab page. Object is clipped and the size does not propagate.
  • Giving a tab box the layout property. Does nothing.
  • Creating a very large title bar and moving the window pieces into the title bar. Even if the title bar is transparent it clips the children.
  • Creating a very large border and moving the window pieces into the border. Even if the border is transparent it clips the children.
  • Making a top level window the child of another top level window. It duplicates the window when you hit the button to open it.
  • Blocked buffs take up UI space in a layout even when there are none.

Unfortunately all the solutions I came up with won't work for my particular problem. All the dynamic objects I can think of would have too large of an impact on game play to toggle extra UI information. Unless someone thinks of another way or thinks of a dynamic object that does no affect game play .

EDIT
I came up with a dynamic element that might have some possibilities. The spellgem/button/inv slot on the hot button window. Its only a minor annoyance to have to place a certain type of item on a certain slot to pick different window layouts.

Last edited by Stoplaughin : 09-20-2008 at 04:01 AM.
Stoplaughin is offline   Reply With Quote
Old 09-20-2008, 07:12 PM   #9
Stoplaughin
A Tundra Mammoth
 
Join Date: Mar 2004
Posts: 60
Interface Author - Click to view interfaces
Default

I think my posts are deviating from the topic quite a bit. But I think its better than making 50 new threads for each topic. Hopefully someone will find this information useful or someone will find alternatives to my approaches. Todays project , was to find the best way to override a hard coded animation.

You can alter the EQUI_Animations.xml file. But whenever that file is changed, your UI will break.

You can alter the texture file from the default UI and change the piece to whatever you want. This actually isn't a bad method. The only downsides is if the image it came from is altered in the default UI, it may cause visual issues in game. The animation will also be stretched if you want a size different than the default.

Its possible there may be a bug in EQ. When EQ searches for duplicate objects it may compare the strings in a different way than when it searches for the animation to display. I tried adding all kinds of things to the beginning and end of an item name including: slashes, null character, new line, carriage return, tab, space, and unicode. Some of them caused parsing errors. Some caused the second animation to be recognized as having a different item name. None of them worked.

There is another possibility for the above type of method. EQ most likely uses a standard function to compare the strings. If this function is dynamically linked, you could replace the C runtime library dll in your EQ dir with a custom dll that replaces the string compare function. Replacing a file would cause problems with the patcher overwriting your dll. You could also hook the function at runtime so that you wouldn't have to worry about the patcher. If not written very carefully, it could have other side affects. It is also on the edge, if not over the edge of "hacking the game".

There seems to be an undocumented attribute named scope, that can have the value internal or default. I placed this attribute everywhere I could think, but it didn't seem to have any affect. It may be undocumented because its not implemented .
Stoplaughin is offline   Reply With Quote
Old 09-21-2008, 12:45 PM   #10
derred
A Ghoul
 
Join Date: Dec 2002
Posts: 11
Interface Author - Click to view interfaces
Default

Thanks for the info Stoplaughin. It did take me a while to figure out that the buttons were anchored to the right via the template. Once I flipped that everything else pretty much fell into place.

Thanks again

derred is offline   Reply With Quote
Old 09-21-2008, 02:41 PM   #11
Savok
On tour since '99
 
Join Date: Sep 2002
Server: Innoruuk forever!
Posts: 473
Interface Author - Click to view interfaces
Default

Nice I really like this. Think I'm going to have to try it out myself tonight. Derred, is it possible for you to post the code for left side buffs or PM it to me please?
Savok is offline   Reply With Quote
Old 09-21-2008, 03:57 PM   #12
derred
A Ghoul
 
Join Date: Dec 2002
Posts: 11
Interface Author - Click to view interfaces
Default

Quote:
Originally Posted by Savok
Nice I really like this. Think I'm going to have to try it out myself tonight. Derred, is it possible for you to post the code for left side buffs or PM it to me please?


I only changed the Buff Window. I did not change the Short Duration Buff Window as I use one without labels. In order to get this code to work you will also need the BW_Border500.dds file Stoplaughin included with his buff windows. You can find that here: http://www.eqinterface.com/download....php?s=&id=5665

I also made slight offset adjustments to Stoplaughin's window and increased the buff label font size from 1 to 2.

Code:
<?xml version="1.0"?> <XML ID="EQInterfaceDefinitionLanguage"> <Schema xmlns="EverQuestData" xmlns:dt="EverQuestDataTypes"/> <TextureInfo item="BW_Border500.dds"> <Size> <CX>16</CX> <CY>16</CY> </Size> </TextureInfo> <Ui2DAnimation item="MUI2_A_WndHor"> <Cycle>true</Cycle> <Frames> <Texture>BW_Border500.dds</Texture> <Location> <X>0</X> <Y>0</Y> </Location> <Size> <CX>16</CX> <CY>1</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> <Duration>1000</Duration> </Frames> </Ui2DAnimation> <Ui2DAnimation item="MUI2_A_WndVer"> <Cycle>true</Cycle> <Frames> <Texture>BW_Border500.dds</Texture> <Location> <X>0</X> <Y>0</Y> </Location> <Size> <CX>1</CX> <CY>16</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> <Duration>1000</Duration> </Frames> </Ui2DAnimation> <Ui2DAnimation item="MUI2_A_WndNull"> <Cycle>true</Cycle> <Frames> <Texture>BW_Border500.dds</Texture> <Location> <X>0</X> <Y>0</Y> </Location> <Size> <CX>0</CX> <CY>0</CY> </Size> <Hotspot> <X>0</X> <Y>0</Y> </Hotspot> <Duration>1000</Duration> </Frames> </Ui2DAnimation> <LayoutVertical item="MUI2_L_Ver0"> <Padding>0</Padding> <Resize>true</Resize> </LayoutVertical> <WindowDrawTemplate item="MUI2_WDT_BottomOnly"> <Background></Background> <Border> <Top>MUI2_A_WndNull</Top> <Bottom>MUI2_A_WndHor</Bottom> <Left>MUI2_A_WndNull</Left> <Right>MUI2_A_WndNull</Right> <TopLeft>MUI2_A_WndNull</TopLeft> <TopRight>MUI2_A_WndNull</TopRight> <BottomLeft>MUI2_A_WndNull</BottomLeft> <BottomRight>MUI2_A_WndNull</BottomRight> <RightTop>MUI2_A_WndNull</RightTop> <RightBottom>MUI2_A_WndNull</RightBottom> <LeftTop>MUI2_A_WndNull</LeftTop> <LeftBottom>MUI2_A_WndNull</LeftBottom> <OverlapLeft>0</OverlapLeft> <OverlapTop>0</OverlapTop> <OverlapRight>0</OverlapRight> <OverlapBottom>0</OverlapBottom> </Border> </WindowDrawTemplate> <WindowDrawTemplate item="MUI2_WDT_NoTop"> <Background></Background> <Titlebar> <Left>MUI2_A_WndNull</Left> <Middle>MUI2_A_WndHor</Middle> <Right>MUI2_A_WndNull</Right> <OverlapLeft>0</OverlapLeft> <OverlapTop>0</OverlapTop> <OverlapRight>0</OverlapRight> <OverlapBottom>0</OverlapBottom> </Titlebar> <Border> <Top>MUI2_A_WndNull</Top> <Bottom>MUI2_A_WndHor</Bottom> <Left>MUI2_A_WndVer</Left> <Right>MUI2_A_WndVer</Right> <TopLeft>MUI2_A_WndNull</TopLeft> <TopRight>MUI2_A_WndNull</TopRight> <BottomLeft>MUI2_A_WndNull</BottomLeft> <BottomRight>MUI2_A_WndNull</BottomRight> <RightTop>MUI2_A_WndNull</RightTop> <RightBottom>MUI2_A_WndNull</RightBottom> <LeftTop>MUI2_A_WndNull</LeftTop> <LeftBottom>MUI2_A_WndNull</LeftBottom> <OverlapLeft>0</OverlapLeft> <OverlapTop>0</OverlapTop> <OverlapRight>0</OverlapRight> <OverlapBottom>0</OverlapBottom> </Border> </WindowDrawTemplate> <Button item="BW_Buff0_Button"> <ScreenID>Buff0</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff1_Button"> <ScreenID>Buff1</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff2_Button"> <ScreenID>Buff2</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff3_Button"> <ScreenID>Buff3</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff4_Button"> <ScreenID>Buff4</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff5_Button"> <ScreenID>Buff5</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff6_Button"> <ScreenID>Buff6</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff7_Button"> <ScreenID>Buff7</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff8_Button"> <ScreenID>Buff8</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff9_Button"> <ScreenID>Buff9</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff10_Button"> <ScreenID>Buff10</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff11_Button"> <ScreenID>Buff11</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff12_Button"> <ScreenID>Buff12</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff13_Button"> <ScreenID>Buff13</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff14_Button"> <ScreenID>Buff14</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff15_Button"> <ScreenID>Buff15</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff16_Button"> <ScreenID>Buff16</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff17_Button"> <ScreenID>Buff17</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff18_Button"> <ScreenID>Buff18</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff19_Button"> <ScreenID>Buff19</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff20_Button"> <ScreenID>Buff20</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff21_Button"> <ScreenID>Buff21</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff22_Button"> <ScreenID>Buff22</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff23_Button"> <ScreenID>Buff23</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Button item="BW_Buff24_Button"> <ScreenID>Buff24</ScreenID> <AutoStretch>true</AutoStretch> <AlignRight>false</AlignRight> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>19</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <ButtonDrawTemplate> <Normal>BlueIconBackground</Normal> <NormalDecal>BuffIcons</NormalDecal> </ButtonDrawTemplate> <DecalOffset> <X>1</X> <Y>1</Y> </DecalOffset> <DecalSize> <CX>17</CX> <CY>17</CY> </DecalSize> </Button> <Label item="BW_Buff0"> <EQType>500</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>4</TopAnchorOffset> <BottomAnchorOffset>23</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff1"> <EQType>501</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>23</TopAnchorOffset> <BottomAnchorOffset>42</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff2"> <EQType>502</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>42</TopAnchorOffset> <BottomAnchorOffset>61</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff3"> <EQType>503</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>61</TopAnchorOffset> <BottomAnchorOffset>80</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff4"> <EQType>504</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>80</TopAnchorOffset> <BottomAnchorOffset>99</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff5"> <EQType>505</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>99</TopAnchorOffset> <BottomAnchorOffset>118</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff6"> <EQType>506</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>118</TopAnchorOffset> <BottomAnchorOffset>137</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff7"> <EQType>507</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>137</TopAnchorOffset> <BottomAnchorOffset>156</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff8"> <EQType>508</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>156</TopAnchorOffset> <BottomAnchorOffset>175</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff9"> <EQType>509</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>175</TopAnchorOffset> <BottomAnchorOffset>194</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff10"> <EQType>510</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>194</TopAnchorOffset> <BottomAnchorOffset>213</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff11"> <EQType>511</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>213</TopAnchorOffset> <BottomAnchorOffset>232</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff12"> <EQType>512</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>232</TopAnchorOffset> <BottomAnchorOffset>251</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff13"> <EQType>513</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>251</TopAnchorOffset> <BottomAnchorOffset>270</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff14"> <EQType>514</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>270</TopAnchorOffset> <BottomAnchorOffset>289</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff15"> <EQType>515</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>289</TopAnchorOffset> <BottomAnchorOffset>308</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff16"> <EQType>516</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>308</TopAnchorOffset> <BottomAnchorOffset>327</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff17"> <EQType>517</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>327</TopAnchorOffset> <BottomAnchorOffset>346</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff18"> <EQType>518</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>346</TopAnchorOffset> <BottomAnchorOffset>365</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff19"> <EQType>519</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>365</TopAnchorOffset> <BottomAnchorOffset>384</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff20"> <EQType>520</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>384</TopAnchorOffset> <BottomAnchorOffset>403</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff21"> <EQType>521</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>403</TopAnchorOffset> <BottomAnchorOffset>422</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff22"> <EQType>522</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>422</TopAnchorOffset> <BottomAnchorOffset>441</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff23"> <EQType>523</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>441</TopAnchorOffset> <BottomAnchorOffset>460</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff24"> <EQType>524</EQType> <Font>2</Font> <AlignRight>false</AlignRight> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>460</TopAnchorOffset> <BottomAnchorOffset>479</BottomAnchorOffset> <LeftAnchorOffset>42</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> </Label> <Label item="BW_Buff0_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>1</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff1_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>2</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff2_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>3</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff3_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>4</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff4_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>5</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff5_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>6</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff6_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>7</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff7_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>8</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff8_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>9</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff9_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>10</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff10_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>11</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff11_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>12</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff12_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>13</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff13_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>14</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff14_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>15</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff15_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>16</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff16_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>17</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff17_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>18</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff18_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>19</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff19_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>20</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff20_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>21</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff21_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>22</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff22_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>23</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff23_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>24</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <Label item="BW_Buff24_Num"> <Font>1</Font> <Location> <X>0</X> <Y>4</Y> </Location> <Size> <CX>36</CX> <CY>12</CY> </Size> <Text>25</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <AlignRight>false</AlignRight> </Label> <TemplateContainer item="MUI2_BW_Spell0"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff0_Num</Pieces> <Pieces>BW_Buff0_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell1"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff1_Num</Pieces> <Pieces>BW_Buff1_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell2"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff2_Num</Pieces> <Pieces>BW_Buff2_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell3"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff3_Num</Pieces> <Pieces>BW_Buff3_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell4"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff4_Num</Pieces> <Pieces>BW_Buff4_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell5"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff5_Num</Pieces> <Pieces>BW_Buff5_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell6"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff6_Num</Pieces> <Pieces>BW_Buff6_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell7"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff7_Num</Pieces> <Pieces>BW_Buff7_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell8"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff8_Num</Pieces> <Pieces>BW_Buff8_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell9"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff9_Num</Pieces> <Pieces>BW_Buff9_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell10"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff10_Num</Pieces> <Pieces>BW_Buff10_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell11"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff11_Num</Pieces> <Pieces>BW_Buff11_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell12"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff12_Num</Pieces> <Pieces>BW_Buff12_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell13"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff13_Num</Pieces> <Pieces>BW_Buff13_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell14"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff14_Num</Pieces> <Pieces>BW_Buff14_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell15"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff15_Num</Pieces> <Pieces>BW_Buff15_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell16"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff16_Num</Pieces> <Pieces>BW_Buff16_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell17"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff17_Num</Pieces> <Pieces>BW_Buff17_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell18"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff18_Num</Pieces> <Pieces>BW_Buff18_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell19"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff19_Num</Pieces> <Pieces>BW_Buff19_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell20"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff20_Num</Pieces> <Pieces>BW_Buff20_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell21"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff21_Num</Pieces> <Pieces>BW_Buff21_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell22"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff22_Num</Pieces> <Pieces>BW_Buff22_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell23"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff23_Num</Pieces> <Pieces>BW_Buff23_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_Spell24"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Size> <CX>40</CX> <CY>19</CY> </Size> <Pieces>BW_Buff24_Num</Pieces> <Pieces>BW_Buff24_Button</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_BuffBtnCont"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Layout>MUI2_L_Ver0</Layout> <Pieces>MUI2_BW_Spell0</Pieces> <Pieces>MUI2_BW_Spell1</Pieces> <Pieces>MUI2_BW_Spell2</Pieces> <Pieces>MUI2_BW_Spell3</Pieces> <Pieces>MUI2_BW_Spell4</Pieces> <Pieces>MUI2_BW_Spell5</Pieces> <Pieces>MUI2_BW_Spell6</Pieces> <Pieces>MUI2_BW_Spell7</Pieces> <Pieces>MUI2_BW_Spell8</Pieces> <Pieces>MUI2_BW_Spell9</Pieces> <Pieces>MUI2_BW_Spell10</Pieces> <Pieces>MUI2_BW_Spell11</Pieces> <Pieces>MUI2_BW_Spell12</Pieces> <Pieces>MUI2_BW_Spell13</Pieces> <Pieces>MUI2_BW_Spell14</Pieces> <Pieces>MUI2_BW_Spell15</Pieces> <Pieces>MUI2_BW_Spell16</Pieces> <Pieces>MUI2_BW_Spell17</Pieces> <Pieces>MUI2_BW_Spell18</Pieces> <Pieces>MUI2_BW_Spell19</Pieces> <Pieces>MUI2_BW_Spell20</Pieces> <Pieces>MUI2_BW_Spell21</Pieces> <Pieces>MUI2_BW_Spell22</Pieces> <Pieces>MUI2_BW_Spell23</Pieces> <Pieces>MUI2_BW_Spell24</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_BuffCont"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>475</BottomAnchorOffset> <LeftAnchorOffset>0</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <Pieces>MUI2_BW_BuffBtnCont</Pieces> </TemplateContainer> <TemplateContainer item="MUI2_BW_SizeCont"> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_BottomOnly</DrawTemplate> <Style_Border>true</Style_Border> <AutoStretch>true</AutoStretch> <TopAnchorToTop>true</TopAnchorToTop> <BottomAnchorToTop>true</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>false</RightAnchorToLeft> <TopAnchorOffset>0</TopAnchorOffset> <BottomAnchorOffset>476</BottomAnchorOffset> <LeftAnchorOffset>1</LeftAnchorOffset> <RightAnchorOffset>0</RightAnchorOffset> <Pieces>MUI2_BW_BuffCont</Pieces> <Pieces>BW_Buff0</Pieces> <Pieces>BW_Buff1</Pieces> <Pieces>BW_Buff2</Pieces> <Pieces>BW_Buff3</Pieces> <Pieces>BW_Buff4</Pieces> <Pieces>BW_Buff5</Pieces> <Pieces>BW_Buff6</Pieces> <Pieces>BW_Buff7</Pieces> <Pieces>BW_Buff8</Pieces> <Pieces>BW_Buff9</Pieces> <Pieces>BW_Buff10</Pieces> <Pieces>BW_Buff11</Pieces> <Pieces>BW_Buff12</Pieces> <Pieces>BW_Buff13</Pieces> <Pieces>BW_Buff14</Pieces> <Pieces>BW_Buff15</Pieces> <Pieces>BW_Buff16</Pieces> <Pieces>BW_Buff17</Pieces> <Pieces>BW_Buff18</Pieces> <Pieces>BW_Buff19</Pieces> <Pieces>BW_Buff20</Pieces> <Pieces>BW_Buff21</Pieces> <Pieces>BW_Buff22</Pieces> <Pieces>BW_Buff23</Pieces> <Pieces>BW_Buff24</Pieces> </TemplateContainer> <Screen item="BuffWindow"> <RelativePosition>false</RelativePosition> <Location> <X>100</X> <Y>100</Y> </Location> <Size> <CX>122</CX> <CY>477</CY> </Size> <Style_Transparent>true</Style_Transparent> <DrawTemplate>MUI2_WDT_NoTop</DrawTemplate> <Style_Titlebar>true</Style_Titlebar> <Style_Closebox>false</Style_Closebox> <Style_Minimizebox>false</Style_Minimizebox> <Style_Border>true</Style_Border> <Style_Sizable>true</Style_Sizable> <Pieces>MUI2_BW_SizeCont</Pieces> </Screen> </XML>

Last edited by derred : 09-21-2008 at 04:14 PM.
derred is offline   Reply With Quote
Old 09-21-2008, 10:10 PM   #13
Savok
On tour since '99
 
Join Date: Sep 2002
Server: Innoruuk forever!
Posts: 473
Interface Author - Click to view interfaces
Default

Excellent, I managed to get them setup pretty well. I also set the text for the regular buff window to align right, alongside the buffs themselves. One of the questions I wanted to ask was how to add static animation backgrounds (buff slot holders) in a window which can be auto stretched. You see the holders I use in my sig.
Savok is offline   Reply With Quote
Old 10-23-2008, 08:20 AM   #14
myxiplx
A Weathered Clockwork
 
Join Date: Aug 2006
Posts: 313
Interface Author - Click to view interfaces
Default

Just wanted to say there's another way to make windows sizable in one direction only. You don't need to remove borders, just overlap them. I can't remember whether I needed an overlap of 1 or 2 in the end, but it definately worked, and it might give a better look to the piece.

Code:
<WindowDrawTemplate item="MUI2_WDT_NoTop"> <Background></Background> <Titlebar> <Left>MUI2_A_WndNull</Left> <Middle>MUI2_A_WndHor</Middle> <Right>MUI2_A_WndNull</Right> <OverlapLeft>0</OverlapLeft> <OverlapTop>0</OverlapTop> <OverlapRight>0</OverlapRight> <OverlapBottom>0</OverlapBottom> </Titlebar> <Border> <Top>MUI2_A_WndNull</Top> <Bottom>MUI2_A_WndNull</Bottom> <!-- now only sizable horizontally --> <Left>MUI2_A_WndVer</Left> <Right>MUI2_A_WndVer</Right> <TopLeft>MUI2_A_WndNull</TopLeft> <TopRight>MUI2_A_WndNull</TopRight> <BottomLeft>MUI2_A_WndNull</BottomLeft> <BottomRight>MUI2_A_WndNull</BottomRight> <RightTop>MUI2_A_WndNull</RightTop> <RightBottom>MUI2_A_WndNull</RightBottom> <LeftTop>MUI2_A_WndNull</LeftTop> <LeftBottom>MUI2_A_WndNull</LeftBottom> <OverlapLeft>1</OverlapLeft> <!-- now can't be sized from the left --> <OverlapTop>1</OverlapTop> <!-- or from the top --> <OverlapRight>0</OverlapRight> <OverlapBottom>0</OverlapBottom> </Border> </WindowDrawTemplate>
myxiplx is offline   Reply With Quote
Old 01-11-2011, 02:53 AM   #15
yuanyelss
A Gray Wolf
 
Join Date: Jan 2011
Posts: 4
Default

The negative value will be added to (and so end up subtracting from) the total calculated width.There's an easy solution though: say it's adding 44 width to my window that I don't want, create a dummy button with -44 width.
yuanyelss 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 11:21 PM.


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