View Single Post
Old 07-15-2009, 05:51 AM   #1
SmileyFAAce_
Guest
 
Posts: n/a
Default Patch July 15 09

EQUI_Animation.xml was changed to add :

1) <TextureInfo item="dragitem71.tga">
And
2) <Texture>dragitem71.tga</Texture>

Open EQUI_Animation.xml (right click the file.. open with.. I chose word pad )and hit the keys CTRL+F for find..In the find window type in .. dragitem70.tga. It will find <TextureInfo item="dragitem70.tga">.Then copy dragitem70.tga + code ( as seen in the example below) and paste the copy under it so there is two <TextureInfo item="dragitem70.tga"> ( with code ) and rename 70 to 71..

It will look like this..

<TextureInfo item="dragitem70.tga">
<Size>
<CX>256</CX>
<CY>256</CY>
</Size>
</TextureInfo>

<TextureInfo item="dragitem70.tga">
<Size>
<CX>256</CX>
<CY>256</CY>
</Size>
</TextureInfo>

Change to ...

<TextureInfo item="dragitem70.tga">
<Size>
<CX>256</CX>
<CY>256</CY>
</Size>
</TextureInfo>

<TextureInfo item="dragitem71.tga">
<Size>
<CX>256</CX>
<CY>256</CY>
</Size>
</TextureInfo>

----------------
CTRL +F again, to find dragitem70.tga again
----------------
Then find..

<Frames>
<Texture>dragitem70.tga</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.tga</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>
----------------
After you rename the second 70 to 71, it will look like this ..

<Frames>
<Texture>dragitem70.tga</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.tga</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>


<<<<** NOTE **>>>> Dont copy and paste my sizes or location ( code )from here.. It is made from Haliken's Old_Default EQUI_Animation.xml and may be different then your sizes.. Things may get funny;P


-------------

Anything else changed that I may have missed?

SmileyFAAce_
  Reply With Quote