• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

KissAssist Release Xtarget Synch

Joined
Oct 22, 2017
RedCents
4,038¢
This is a command that can be dropped in your kissassist file to quickly sync xtarget lists from one toon to another.
In the binds section add

Code:
#bind XTSync         /xtsync
#bind XTClear         /xtclear


At the end of the macro file add:

Code:
Sub Bind_XTSync
    /if ((${Target.Name.NotEqual[null]}) && (${EQBC.Names.Find[${Target.Name}]})) {
            /declare X int local 0
            /for X 1 to 13
                /if (${Me.XTarget[${X}].ID}) {
                    /bct ${Target.Name} //xt set ${X} ${Me.XTarget[${X}].Name}
                }
            /next X
    }
/return

Sub Bind_XTClear
    /if ((${Target.Name.NotEqual[null]}) && (${EQBC.Names.Find[${Target.Name}]})) {
            /declare X int local 0
            /for X 1 to 13
                    /bct ${Target.Name} //xt remove 1
            /next X
    }
/return

Then setup the xtarget list on your primary healer and send it to your secondary healer by targeting them and typing /xtsync
 
Last edited:
KissAssist Release Xtarget Synch

Users who are viewing this thread

Back
Top
Cart