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
At the end of the macro file add:
Then setup the xtarget list on your primary healer and send it to your secondary healer by targeting them and typing /xtsync
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:

