Spell Icon sizes

Discussion in 'The Veterans' Lounge' started by seaninsa, Jul 1, 2020.

  1. seaninsa Journeyman

    I was trying out the Windowed mode of Everquest. I usually play in full display. I wanted to try and box a necro with my druid. My question is how do you make the spell gems bigger? In the window mode everything is so small.

    I posted the question on FB and got some really wonderful and rude responses. I am just trying to figure this out. So if you are going to be rude please do not response.
    Voktar likes this.
  2. Riou EQResource

    For buff Icons you can make a Custom UI with custom EQUI_BuffWindow.xml and EQUI_ShortDurationBuffWindow.xml and edit the CX and CY values inside of them to be bigger

    For spell gems you can see the relevant thread on EQInterface: https://www.eqinterface.com/forums/showthread.php?t=20317
  3. Voktar Journeyman

    There are four files you can change to make those icons bigger but graphics are low resolution so they will look blurry.

    The files are: EQUI_BuffWindow.xml, EQUI_ShortDurationBuffWindow.xml, EQUI_CastSpellWnd.xml and EQUI_HotButtonWnd.xml.

    You need to find and change <sizes> and <decalsizes> and if possible be sure they are equal.

    Here is an example of my custom BuffWindow, you can see at the begining of the file i define one time the size for all the buffs, and then the decalsize for the rest, its not that difficult, you can extrapolate this working for the rest of the files.

    Example:


    Code:
    <?xml version="1.0" encoding="us-ascii"?>
     
    <XML ID="EQInterfaceDefinitionLanguage">
     
        <Schema xmlns="EverQuestData" xmlns:dt="EverQuestDataTypes" />
     
    <!--Fully modified-->
     
        <Button item="BW_Buff0_Button">
     
            <ScreenID>Buff0</ScreenID>
     
            <AutoStretchHorizontal>true</AutoStretchHorizontal>
     
            <RightAnchorToLeft>false</RightAnchorToLeft>
     
            <Size>
     
                <CY>18</CY>
     
            </Size>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff1_Button">
     
            <ScreenID>Buff1</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff2_Button">
     
            <ScreenID>Buff2</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff3_Button">
     
            <ScreenID>Buff3</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff4_Button">
     
            <ScreenID>Buff4</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff5_Button">
     
            <ScreenID>Buff5</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff6_Button">
     
            <ScreenID>Buff6</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff7_Button">
     
            <ScreenID>Buff7</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff8_Button">
     
            <ScreenID>Buff8</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff9_Button">
     
            <ScreenID>Buff9</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff10_Button">
     
            <ScreenID>Buff10</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff11_Button">
     
            <ScreenID>Buff11</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff12_Button">
     
            <ScreenID>Buff12</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff13_Button">
     
            <ScreenID>Buff13</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff14_Button">
     
            <ScreenID>Buff14</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff15_Button">
     
            <ScreenID>Buff15</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff16_Button">
     
            <ScreenID>Buff16</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff17_Button">
     
            <ScreenID>Buff17</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff18_Button">
     
            <ScreenID>Buff18</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff19_Button">
     
            <ScreenID>Buff19</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff20_Button">
     
            <ScreenID>Buff20</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff21_Button">
     
            <ScreenID>Buff21</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff22_Button">
     
            <ScreenID>Buff22</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff23_Button">
     
            <ScreenID>Buff23</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff24_Button">
     
            <ScreenID>Buff24</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff25_Button">
     
            <ScreenID>Buff25</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff26_Button">
     
            <ScreenID>Buff26</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff27_Button">
     
            <ScreenID>Buff27</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff28_Button">
     
            <ScreenID>Buff28</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff29_Button">
     
            <ScreenID>Buff29</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff30_Button">
     
            <ScreenID>Buff30</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff31_Button">
     
            <ScreenID>Buff31</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff32_Button">
     
            <ScreenID>Buff32</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff33_Button">
     
            <ScreenID>Buff33</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff34_Button">
     
            <ScreenID>Buff34</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff35_Button">
     
            <ScreenID>Buff35</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff36_Button">
     
            <ScreenID>Buff36</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff37_Button">
     
            <ScreenID>Buff37</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff38_Button">
     
            <ScreenID>Buff38</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff39_Button">
     
            <ScreenID>Buff39</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff40_Button">
     
            <ScreenID>Buff40</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Button item="BW_Buff41_Button">
     
            <ScreenID>Buff41</ScreenID>
     
            <DecalSize>
     
                <CX>18</CX>
     
                <CY>18</CY>
     
            </DecalSize>
     
        </Button>
     
        <Label item="BW_Buff0_SpellName">
     
            <ScreenID>BW_Buff0_SpellName</ScreenID>
     
            <EQType>500</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff1_SpellName">
     
            <ScreenID>BW_Buff1_SpellName</ScreenID>
     
            <EQType>501</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff2_SpellName">
     
            <ScreenID>BW_Buff2_SpellName</ScreenID>
     
            <EQType>502</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff3_SpellName">
     
            <ScreenID>BW_Buff3_SpellName</ScreenID>
     
            <EQType>503</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff4_SpellName">
     
            <ScreenID>BW_Buff4_SpellName</ScreenID>
     
            <EQType>504</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff5_SpellName">
     
            <ScreenID>BW_Buff5_SpellName</ScreenID>
     
            <EQType>505</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff6_SpellName">
     
            <ScreenID>BW_Buff6_SpellName</ScreenID>
     
            <EQType>506</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff7_SpellName">
     
            <ScreenID>BW_Buff7_SpellName</ScreenID>
     
            <EQType>507</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff8_SpellName">
     
            <ScreenID>BW_Buff8_SpellName</ScreenID>
     
            <EQType>508</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff9_SpellName">
     
            <ScreenID>BW_Buff9_SpellName</ScreenID>
     
            <EQType>509</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff10_SpellName">
     
            <ScreenID>BW_Buff10_SpellName</ScreenID>
     
            <EQType>510</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff11_SpellName">
     
            <ScreenID>BW_Buff11_SpellName</ScreenID>
     
            <EQType>511</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff12_SpellName">
     
            <ScreenID>BW_Buff12_SpellName</ScreenID>
     
            <EQType>512</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff13_SpellName">
     
            <ScreenID>BW_Buff13_SpellName</ScreenID>
     
            <EQType>513</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff14_SpellName">
     
            <ScreenID>BW_Buff14_SpellName</ScreenID>
     
            <EQType>514</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff15_SpellName">
     
            <ScreenID>BW_Buff15_SpellName</ScreenID>
     
            <EQType>515</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff16_SpellName">
     
            <ScreenID>BW_Buff16_SpellName</ScreenID>
     
            <EQType>516</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff17_SpellName">
     
            <ScreenID>BW_Buff17_SpellName</ScreenID>
     
            <EQType>517</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff18_SpellName">
     
            <ScreenID>BW_Buff18_SpellName</ScreenID>
     
            <EQType>518</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff19_SpellName">
     
            <ScreenID>BW_Buff19_SpellName</ScreenID>
     
            <EQType>519</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff20_SpellName">
     
            <ScreenID>BW_Buff20_SpellName</ScreenID>
     
            <EQType>520</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff21_SpellName">
     
            <ScreenID>BW_Buff21_SpellName</ScreenID>
     
            <EQType>521</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff22_SpellName">
     
            <ScreenID>BW_Buff22_SpellName</ScreenID>
     
            <EQType>522</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff23_SpellName">
     
            <ScreenID>BW_Buff23_SpellName</ScreenID>
     
            <EQType>523</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff24_SpellName">
     
            <ScreenID>BW_Buff24_SpellName</ScreenID>
     
            <EQType>524</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff25_SpellName">
     
            <ScreenID>BW_Buff25_SpellName</ScreenID>
     
            <EQType>525</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff26_SpellName">
     
            <ScreenID>BW_Buff26_SpellName</ScreenID>
     
            <EQType>526</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff27_SpellName">
     
            <ScreenID>BW_Buff27_SpellName</ScreenID>
     
            <EQType>527</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff28_SpellName">
     
            <ScreenID>BW_Buff28_SpellName</ScreenID>
     
            <EQType>528</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff29_SpellName">
     
            <ScreenID>BW_Buff29_SpellName</ScreenID>
     
            <EQType>529</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff30_SpellName">
     
            <ScreenID>BW_Buff30_SpellName</ScreenID>
     
            <EQType>530</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff31_SpellName">
     
            <ScreenID>BW_Buff31_SpellName</ScreenID>
     
            <EQType>531</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff32_SpellName">
     
            <ScreenID>BW_Buff32_SpellName</ScreenID>
     
            <EQType>532</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff33_SpellName">
     
            <ScreenID>BW_Buff33_SpellName</ScreenID>
     
            <EQType>533</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff34_SpellName">
     
            <ScreenID>BW_Buff34_SpellName</ScreenID>
     
            <EQType>534</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff35_SpellName">
     
            <ScreenID>BW_Buff35_SpellName</ScreenID>
     
            <EQType>535</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff36_SpellName">
     
            <ScreenID>BW_Buff36_SpellName</ScreenID>
     
            <EQType>536</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff37_SpellName">
     
            <ScreenID>BW_Buff37_SpellName</ScreenID>
     
            <EQType>537</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff38_SpellName">
     
            <ScreenID>BW_Buff38_SpellName</ScreenID>
     
            <EQType>538</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff39_SpellName">
     
            <ScreenID>BW_Buff39_SpellName</ScreenID>
     
            <EQType>539</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff40_SpellName">
     
            <ScreenID>BW_Buff40_SpellName</ScreenID>
     
            <EQType>540</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <Label item="BW_Buff41_SpellName">
     
            <ScreenID>BW_Buff41_SpellName</ScreenID>
     
            <EQType>541</EQType>
     
            <TextColor>
     
                <R>255</R>
     
                <G>255</G>
     
                <B>255</B>
     
            </TextColor>
     
            <Size>
     
                <CX>976</CX>
     
                <CY>14</CY>
     
            </Size>
     
        </Label>
     
        <TileLayoutBox item="BW_Buttons">
     
            <FirstPieceTemplate>true</FirstPieceTemplate>
     
            <AutoStretch>true</AutoStretch>
     
            <RightAnchorToLeft>false</RightAnchorToLeft>
     
            <BottomAnchorToTop>false</BottomAnchorToTop>
     
            <RightAnchorOffset>2</RightAnchorOffset>
     
            <SecondarySpacing>1</SecondarySpacing>
     
            <Pieces>BW_Buff0_Button</Pieces>
     
            <Pieces>BW_Buff1_Button</Pieces>
     
            <Pieces>BW_Buff2_Button</Pieces>
     
            <Pieces>BW_Buff3_Button</Pieces>
     
            <Pieces>BW_Buff4_Button</Pieces>
     
            <Pieces>BW_Buff5_Button</Pieces>
     
            <Pieces>BW_Buff6_Button</Pieces>
     
            <Pieces>BW_Buff7_Button</Pieces>
     
            <Pieces>BW_Buff8_Button</Pieces>
     
            <Pieces>BW_Buff9_Button</Pieces>
     
            <Pieces>BW_Buff10_Button</Pieces>
     
            <Pieces>BW_Buff11_Button</Pieces>
     
            <Pieces>BW_Buff12_Button</Pieces>
     
            <Pieces>BW_Buff13_Button</Pieces>
     
            <Pieces>BW_Buff14_Button</Pieces>
     
            <Pieces>BW_Buff15_Button</Pieces>
     
            <Pieces>BW_Buff16_Button</Pieces>
     
            <Pieces>BW_Buff17_Button</Pieces>
     
            <Pieces>BW_Buff18_Button</Pieces>
     
            <Pieces>BW_Buff19_Button</Pieces>
     
            <Pieces>BW_Buff20_Button</Pieces>
     
            <Pieces>BW_Buff21_Button</Pieces>
     
            <Pieces>BW_Buff22_Button</Pieces>
     
            <Pieces>BW_Buff23_Button</Pieces>
     
            <Pieces>BW_Buff24_Button</Pieces>
     
            <Pieces>BW_Buff25_Button</Pieces>
     
            <Pieces>BW_Buff26_Button</Pieces>
     
            <Pieces>BW_Buff27_Button</Pieces>
     
            <Pieces>BW_Buff28_Button</Pieces>
     
            <Pieces>BW_Buff29_Button</Pieces>
     
            <Pieces>BW_Buff30_Button</Pieces>
     
            <Pieces>BW_Buff31_Button</Pieces>
     
            <Pieces>BW_Buff32_Button</Pieces>
     
            <Pieces>BW_Buff33_Button</Pieces>
     
            <Pieces>BW_Buff34_Button</Pieces>
     
            <Pieces>BW_Buff35_Button</Pieces>
     
            <Pieces>BW_Buff36_Button</Pieces>
     
            <Pieces>BW_Buff37_Button</Pieces>
     
            <Pieces>BW_Buff38_Button</Pieces>
     
            <Pieces>BW_Buff39_Button</Pieces>
     
            <Pieces>BW_Buff40_Button</Pieces>
     
            <Pieces>BW_Buff41_Button</Pieces>
     
        </TileLayoutBox>
     
        <TileLayoutBox item="BW_SpellNames">
     
            <AutoStretch>true</AutoStretch>
     
            <RightAnchorToLeft>false</RightAnchorToLeft>
     
            <BottomAnchorToTop>false</BottomAnchorToTop>
     
            <LeftAnchorOffset>20</LeftAnchorOffset>
     
            <TopAnchorOffset>5</TopAnchorOffset>
     
            <Pieces>BW_Buff0_SpellName</Pieces>
     
            <Pieces>BW_Buff1_SpellName</Pieces>
     
            <Pieces>BW_Buff2_SpellName</Pieces>
     
            <Pieces>BW_Buff3_SpellName</Pieces>
     
            <Pieces>BW_Buff4_SpellName</Pieces>
     
            <Pieces>BW_Buff5_SpellName</Pieces>
     
            <Pieces>BW_Buff6_SpellName</Pieces>
     
            <Pieces>BW_Buff7_SpellName</Pieces>
     
            <Pieces>BW_Buff8_SpellName</Pieces>
     
            <Pieces>BW_Buff9_SpellName</Pieces>
     
            <Pieces>BW_Buff10_SpellName</Pieces>
     
            <Pieces>BW_Buff11_SpellName</Pieces>
     
            <Pieces>BW_Buff12_SpellName</Pieces>
     
            <Pieces>BW_Buff13_SpellName</Pieces>
     
            <Pieces>BW_Buff14_SpellName</Pieces>
     
            <Pieces>BW_Buff15_SpellName</Pieces>
     
            <Pieces>BW_Buff16_SpellName</Pieces>
     
            <Pieces>BW_Buff17_SpellName</Pieces>
     
            <Pieces>BW_Buff18_SpellName</Pieces>
     
            <Pieces>BW_Buff19_SpellName</Pieces>
     
            <Pieces>BW_Buff20_SpellName</Pieces>
     
            <Pieces>BW_Buff21_SpellName</Pieces>
     
            <Pieces>BW_Buff22_SpellName</Pieces>
     
            <Pieces>BW_Buff23_SpellName</Pieces>
     
            <Pieces>BW_Buff24_SpellName</Pieces>
     
            <Pieces>BW_Buff25_SpellName</Pieces>
     
            <Pieces>BW_Buff26_SpellName</Pieces>
     
            <Pieces>BW_Buff27_SpellName</Pieces>
     
            <Pieces>BW_Buff28_SpellName</Pieces>
     
            <Pieces>BW_Buff29_SpellName</Pieces>
     
            <Pieces>BW_Buff30_SpellName</Pieces>
     
            <Pieces>BW_Buff31_SpellName</Pieces>
     
            <Pieces>BW_Buff32_SpellName</Pieces>
     
            <Pieces>BW_Buff33_SpellName</Pieces>
     
            <Pieces>BW_Buff34_SpellName</Pieces>
     
            <Pieces>BW_Buff35_SpellName</Pieces>
     
            <Pieces>BW_Buff36_SpellName</Pieces>
     
            <Pieces>BW_Buff37_SpellName</Pieces>
     
            <Pieces>BW_Buff38_SpellName</Pieces>
     
            <Pieces>BW_Buff39_SpellName</Pieces>
     
            <Pieces>BW_Buff40_SpellName</Pieces>
     
            <Pieces>BW_Buff41_SpellName</Pieces>
     
        </TileLayoutBox>
     
        <Screen item="BuffWindow">
     
            <RelativePosition>false</RelativePosition>
     
            <Location>
     
                <X>0</X>
     
                <Y>0</Y>
     
            </Location>
     
            <Size>
     
                <CX>280</CX>
     
                <CY>797</CY>
     
            </Size>
     
            <MinHSize>23</MinHSize>
     
            <MinVSize>20</MinVSize>
     
            <MaxHSize>1918</MaxHSize>
     
            <MaxVSize>797</MaxVSize>
     
            <DrawTemplate>WDT_InnerGray</DrawTemplate>
     
            <Style_Closebox>true</Style_Closebox>
     
            <Style_Border>true</Style_Border>
     
            <Style_Sizable>true</Style_Sizable>
     
            <Pieces>TileLayoutBox:BW_Buttons</Pieces>
     
            <Pieces>TileLayoutBox:BW_SpellNames</Pieces>
     
        </Screen>
     
    </XML>
    Anyway, the best way to learn is looking at others work. Good luck :)