How to Fix Broken Item Icons for Custom UIs (a.k.a. Necklaces Everywhere!)

Grinkles

Developer
Staff member
Not in a "reading" mood? Skip to the GREEN TEXT below to see your two options.

==========​

Many players still cling to custom UIs tailored to the old client. One downside of this is that an outdated UI stops displaying icons beyond a certain point, instead slapping the game's very first icon ― a generic necklace ― on any item whose icon ID it doesn't recognize.

This didn't used to be an issue, but some icons have recently been altered in order to more accurately represent the item's model, name, and/or lore. Some examples include:
The point at which icons begin to "break" varies from UI to UI, but if you're starting to see generic necklaces pop up here and there, it's only going to get worse in the future as more of these icons are used.

Fortunately, it's not too difficult to modify any UI to account for these new item icons. Here is an image showing some dorky Paladin's inventory as seen with broken icons (left) and then with fixed icons (right):

xfrldGh.jpg

==========
To fix broken icons in your own crusty, outdated UI, you have two options:
  1. THE EASY (for you) WAY Post your custom UI's EQUI_Animations.xml here by using the "Upload a File" button when posting a reply. I will see if I can get it working for you myself.
    • This is found in [SoD Directory] > uifiles > ______
    • OR
  2. THE HARD WAY Figure out how to modify your custom UI's EQUI_Animations.xml file yourself by reading on.
==========​

If you're opting for Option #2, here's what you need to do:
  1. Open your custom UI folder.
    • This will be in [SoD Directory] > uifiles > _______
  2. Right-click on EQUI_Animations.xml to open it using WordPad (recommended), NotePad, or a similar program.
  3. Search (CTRL + F) this word: cleric01
    • You should end up at a line that reads:
      Code:
          <TextureInfo item="cleric01.tga">
  4. Immediately above that line, you should see a chunk that references dragitem__.dds.
    • In my case, I saw the following:
      Code:
          <TextureInfo item="dragitem67.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
  5. Copy (CTRL +C) and paste (CTRL + V) the following code immediately above that <TextureInfo item="cleric01.tga"> line, starting at whatever dragitem__ number your UI left off at:
    • Code:
          <TextureInfo item="dragitem68.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>   
          <TextureInfo item="dragitem69.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>   
          <TextureInfo item="dragitem70.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem71.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem72.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem73.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem74.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem75.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem76.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem77.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem78.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem79.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem80.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem81.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem82.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem83.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem84.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem85.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem86.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem87.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem88.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem89.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem90.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem91.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem92.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem93.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem94.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem95.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem96.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem97.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem98.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem99.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem100.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem101.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem102.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem103.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem104.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem105.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem106.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem107.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem108.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem109.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem110.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem111.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem112.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem113.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem114.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem115.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem116.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem117.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem118.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem119.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem120.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem121.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem122.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem123.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem124.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem125.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem126.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem127.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem128.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem129.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem130.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem131.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem132.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem133.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem134.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem135.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem136.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem137.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem138.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem139.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem140.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem141.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem142.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem143.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem144.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem145.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem146.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem147.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem148.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem149.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem150.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem151.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem152.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem153.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem154.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem155.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem156.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem157.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem158.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem159.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem160.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem161.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem162.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem163.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem164.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem165.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem166.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem167.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem168.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem169.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem170.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem171.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem172.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem173.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem174.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem175.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem176.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem177.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem178.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem179.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem180.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem181.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem182.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem183.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem184.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem185.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem186.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem187.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem188.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem189.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem190.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem191.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem192.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem193.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem194.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem195.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem196.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem197.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem198.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem199.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem200.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem201.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem202.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem203.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem204.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem205.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem206.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem207.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem208.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem209.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem210.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem211.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem212.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem213.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem214.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem215.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem216.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem217.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem218.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem219.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem220.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem221.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem222.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem223.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem224.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem225.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem226.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem227.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem228.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem229.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem230.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem231.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem232.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem233.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem234.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem235.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem236.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem237.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem238.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem239.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem240.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem241.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem242.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem243.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem244.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem245.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem246.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem247.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem248.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem249.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem250.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem251.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
          <TextureInfo item="dragitem252.dds">
              <Size>
                  <CX>256</CX>
                  <CY>256</CY>
              </Size>
          </TextureInfo>
  6. Search (CTRL +F) the following phrase: Default Tab Frame
    • You should come across the following chunk:
      Code:
          </Ui2DAnimation>
          <!-- Default Tab Frame -->
          <Ui2DAnimation item="A_TabBottomLeft">
  7. Immediately above that chunk (above </Ui2DAnimation>), copy (CTRL +C) and paste (CTRL + V) the following code, starting at whatever dragitem__ number your UI left off at:
    Code:
            <Frames>
                <Texture>dragitem68.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>   
            <Frames>
                <Texture>dragitem69.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>   
            <Frames>
                <Texture>dragitem70.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem71.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem72.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem73.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem74.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem75.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem76.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem77.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem78.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem79.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem80.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem81.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem82.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem83.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem84.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem85.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem86.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem87.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem88.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem89.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem90.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem91.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem92.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem93.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem94.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem95.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem96.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem97.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem98.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem99.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem100.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem101.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem102.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem103.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem104.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem105.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem106.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem107.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem108.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem109.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem110.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem111.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem112.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem113.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem114.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem115.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem116.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem117.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem118.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem119.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem120.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem121.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem122.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem123.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem124.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem125.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
            <Texture>dragitem126.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem127.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem128.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem129.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem130.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem131.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem132.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem133.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem134.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem135.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem136.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem137.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem138.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem139.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem140.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem141.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem142.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem143.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem144.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem145.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem146.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem147.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem148.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem149.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem150.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem151.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem152.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem153.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem154.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem155.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem156.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem157.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem158.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem159.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem160.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem161.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem162.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem163.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem164.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem165.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem166.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem167.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem168.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem169.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem170.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem171.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem172.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem173.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem174.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem175.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem176.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem177.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem178.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem179.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem180.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem181.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem182.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem183.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem184.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem185.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem186.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem187.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem188.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem189.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem190.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem191.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem192.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem193.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem194.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem195.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem196.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem197.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem198.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem199.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem200.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem201.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem202.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem203.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem204.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem205.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem206.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem207.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem208.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem209.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem210.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem211.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem212.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem213.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem214.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem215.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem216.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem217.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem218.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem219.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem220.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem221.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem222.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem223.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem224.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem225.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem226.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem227.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem228.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem229.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem230.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem231.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem232.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem233.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem234.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem235.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem236.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem237.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem238.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem239.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem240.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem241.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem242.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem243.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem244.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem245.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem246.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem247.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem248.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem249.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem250.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem251.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>
            <Frames>
                <Texture>dragitem252.dds</Texture>
                <Location>
                    <X>0</X>
                    <Y>0</Y>
                </Location>
                <Size>
                    <CX>256</CX>
                    <CY>256</CY>
                </Size>
                <Hotspot>
                    <X>0</X>
                    <Y>0</Y>
                </Hotspot>
                <Duration>1000</Duration>
            </Frames>

  8. Save (CTRL +S) your UI's EQUI_Animations.xml file.
  9. Use /loadskin, relog, or start a new client altogether to see if the icons are no longer necklaces.
  10. If you still see some necklaces, it means you are missing the dragitem__.dds files referenced in the above code. These images (which are freely available from Daybreak/Steam) can be downloaded in a .zip here:
  11. Open the downloaded .zip folder and drag all the files from there into your default UI folder. (Yes, default!)
    • This is found in [SoD Directory] > uifiles > default
  12. Use /loadskin, relog, or start a new client altogether to see if the icons are no longer necklaces.
Post any problems or oddities you come across... :)

EDIT:
30 November 2017 — Updated both chunks of code and .zip download to include dragitems 229-243.

15 June 2019 — Updated code and .zip download to include dragitems up to 252.
 
Last edited:
Yes. They're very accurate to the new item icon seen on Fomelo. SK / Paladin both have different in-game graphics.
 
Somewhat related, I've noticed that when I sell certain items to merchants, those items show up on the merchant as the generic necklace (I'll try to note what item next time it happens). Any idea what would be causing that?
 
Cartographer's Key, High Quality Steel Plating, and Staff of Ruin all show up as necklaces for me on merchants. I don't use a custom UI.
 
Any icon ID over 5000 (i.e., anything from dragitem126.dds or higher) shows up as a pearl necklace in the merchant window, even if it shows up perfectly fine in the item window, inventory window, and so on. I've tried digging to see if there's a way to fix this but haven't found a solution. It may be a client limitation. :confused:
 
Huh, interesting. The EQUI_MerchantWnd.xml file doesn't seem to support the EqType 6000 series (which normally refers to merchant inventory slots). If I recall correctly that's an eqemu thing to fix issues with slots being overwritten in merchantlist as people sell/buy items from merchants. Mostly likely something going on serverside with merchantlist, ItemList, or MW_ItemList.
 
Back
Top Bottom