Keeping with the trend of the last few updates, this is a huge update. Other than the obvious 10.82 compatibility, this update features some improvements: utito tempo will work with recovery, targeting now has many more options for priorities, and the Walker will now automatically detect the rope or shovel of the user. To round out these improvements, I've also added some new features that allow Scripters to easily make team scripts. This update will be automatically installed when you restart XenoSuite.

Changelog:
Code:
v14.11.19.995
Added 10.82 compatibility.
Fixed a bug that caused Empowerments in the Scripter to not work with Recovery spells.
Re-coded the spell timer system and HUD to be more specific and versatile.
Improved Targeting to have ten priority options instead of five.
    Lowest, Very Low, Low, Medium Low, Medium, Medium High, High, Very High, Super High, Highest
    The old priorities will slot into Lowest - Medium, and all relevant settings should stay the same relative to
    these, so old scripts should work flawlessly still.
Improved the Walker to automatically detect rope and shovel in open backpacks.
    If there are no tools visible, the Walker will obey the tools selected in the Walker Options panel like before.
Added GenericTextMessageProxy class to the Scripter.
    Functionality:
        This works just like all of the other text message proxies.
        It will catch all messages that don't have a specific proxy (raid messages, player is far to the south, etc).
Added Self.WalkTo to the Scripter.
    Functionality:
        Tries to walk to the position.
    Parameters:
        x: x coordinate in the map on the x-axis
        y: y coordinate in the map on the y-axis
        z: z coordinate in the map on the z-axis
    Return:
        True if the position is reached, false its:
            1. Not reachable for 2 consecutive seconds
            2. On a different floor
Added IpcPublisherSocket to the Scripter.
Added IpcSubscriberSocket to the Scripter.
Added IpcResponderSocket to the Scripter.
Added IpcRequestorSocket to the Scripter.
    The four classes above are part of XenoBot's new IPC (inter-process communication) layer.
    The purpose of this new layer is to allow Lua scripts running on MULTIPLE CHARACTERS to talk to each-other.
    See below for details on how to use these classes.
Simple examples
Badass example