...
Turns out it was a pesky little XML function so I didn't have to totally rebuild the two files.
For those who want to do it themselves, it's a VERY fast fix:
Go to PetWindow.XML and open it in Notepad/Notepad2/etc
Find lines 34 - 49 and delete the function contained within.
The function to remove (for those without line numbers):
Remove this set of code, save and reload the UI and you should no longer be able to get a cursor by clicking on the petbar name and thus will no longer have to deal with "breaking" the spell buttons!
Turns out it was a pesky little XML function so I didn't have to totally rebuild the two files.
For those who want to do it themselves, it's a VERY fast fix:
Go to PetWindow.XML and open it in Notepad/Notepad2/etc
Find lines 34 - 49 and delete the function contained within.
The function to remove (for those without line numbers):
Code:
<EditBox name="$parentInputName" font="UO_DefaultText" maxchars="16" textalign="center" scrolling="horz" history="false" taborder="0" input="text">
<Size>
<AbsPoint x="158" y="28" />
</Size>
<Anchors>
<Anchor point="center" relativePoint="center" relativeTo="$parent">
<AbsPoint x="17" y="6" />
</Anchor>
</Anchors>
<TextColor r="255" g="255" b="255" a="255" />
<EventHandlers>
<EventHandler event="OnKeyEnter" function="PetWindow.OnKeyEnter" />
<EventHandler event="OnKeyEscape" function="PetWindow.OnKeyEscape" />
<EventHandler event="OnLButtonDown" function="PetWindow.OnTextItemClicked" />
</EventHandlers>
</EditBox>