Moderator: MacroQuest Developers

Here's what I do:nytemyst wrote:that assist idea is the shit.
Code: Select all
/declare RaidMA string global NULLCode: Select all
/assistma=/assist ${RaidMA}
/ma=/varset RaidMA ${Target.CleanName}
That's in EQUI_Animations.xml in the custom UI folder you are using.I have a question about certain icons for newer items. With my old solaria UI, all the OoW items had a pearl necklace as an icon, when I updated my UI, it fixed this. Anyway to pinpoint exactly where the problem lies?
But other then that, I switched to this UI from the one I've been using for the last 3 years, so that's saying a lot for your UI :)
Code: Select all
<!-- ADDRESS BOOK BUTTON -->
<Ui2DAnimation item = "A_AddressBookBtnNormal">
<Frames>
<Texture>window_pieces05.tga</Texture>
<Location>
<X>60</X>
<Y>0</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<Ui2DAnimation item = "A_AddressBookBtnFlyby">
<Frames>
<Texture>window_pieces05.tga</Texture>
<Location>
<X>86</X>
<Y>0</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<Ui2DAnimation item = "A_AddressBookBtnPressed">
<Frames>
<Texture>window_pieces05.tga</Texture>
<Location>
<X>112</X>
<Y>0</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<Ui2DAnimation item = "A_AddressBookBtnPressedFlyby">
<Frames>
<Texture>window_pieces05.tga</Texture>
<Location>
<X>138</X>
<Y>0</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<!-- ADDRESS BOOK SYNC BUTTON -->
<Ui2DAnimation item = "A_AddressBookSyncBtnNormal">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>218</X>
<Y>152</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<Ui2DAnimation item = "A_AddressBookSyncBtnFlyby">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>218</X>
<Y>178</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<Ui2DAnimation item = "A_AddressBookSyncBtnPressed">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>192</X>
<Y>204</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<Ui2DAnimation item = "A_AddressBookSyncBtnPressedFlyby">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>218</X>
<Y>204</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
Code: Select all
<!-- Address Book Fix v1.0 {{{ -->
<!-- A_AddressBookSyncBtnNormal {{{ -->
<Ui2DAnimation item = "A_AddressBookSyncBtnNormal">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>218</X>
<Y>152</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<!-- }}} --->
<!-- A_AddressBookSyncBtnFlyby {{{ -->
<Ui2DAnimation item = "A_AddressBookSyncBtnFlyby">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>218</X>
<Y>178</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<!-- }}} -->
<!-- A_AddressBookSyncBtnPressed {{{ -->
<Ui2DAnimation item = "A_AddressBookSyncBtnPressed">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>192</X>
<Y>204</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<!-- }}} -->
<!-- A_AddressBookSyncBtnPressedFlyby {{{ -->
<Ui2DAnimation item = "A_AddressBookSyncBtnPressedFlyby">
<Frames>
<Texture>window_pieces04.tga</Texture>
<Location>
<X>218</X>
<Y>204</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Hotspot>
<X>0</X>
<Y>0</Y>
</Hotspot>
</Frames>
</Ui2DAnimation>
<!-- }}} -->
<!-- }}} Ending AddressBook Block-->