Quote Originally Posted by 'Ðeceased',index.php?page=Thread&postID=103951#pos t103951
EDIT1: I think i've found a solution for the 255 character limit with the macros ur using

for toonA you don't require the first line of targeting, toonB doesn't need the second etc.. so:

ToonA:

/target [mod:ctrl,mod:alt,nomod:shift,target=ToonB]
[mod:alt,mod:shift,nomod:ctrl,target=ToonC]
[mod:ctrl,mod:alt,mod:shift,target=ToonD]
[mod:ctrl,nomod:alt,nomod:shift,target=ToonE]
/cast [target=targettarget,harm] Lightning Bolt
/targetlasttarget

ToonB:

/target [mod:ctrl,mod:shift,nomod:alt,target=ToonA]
[mod:alt,mod:shift,nomod:ctrl,target=ToonC]
[mod:ctrl,mod:alt,mod:shift,target=ToonD]
[mod:ctrl,nomod:alt,nomod:shift,target=ToonE]
/cast [target=targettarget,harm] Lightning Bolt
/targetlasttarget

ToonC:

/target [mod:ctrl,mod:shift,nomod:alt,target=ToonA]
[mod:ctrl,mod:alt,nomod:shift,target=ToonB]
[mod:ctrl,mod:alt,mod:shift,target=ToonD]
[mod:ctrl,nomod:alt,nomod:shift,target=ToonE]
/cast [target=targettarget,harm] Lightning Bolt
/targetlasttarget

ToonD:

/target [mod:ctrl,mod:shift,nomod:alt,target=ToonA]
[mod:ctrl,mod:alt,nomod:shift,target=ToonB]
[mod:alt,mod:shift,nomod:ctrl,target=ToonC]
[mod:ctrl,nomod:alt,nomod:shift,target=ToonE]
/cast [target=targettarget,harm] Lightning Bolt
/targetlasttarget

and toonE:

/target [mod:ctrl,mod:shift,nomod:alt,target=ToonA]
[mod:ctrl,mod:alt,nomod:shift,target=ToonB]
[mod:alt,mod:shift,nomod:ctrl,target=ToonC]
[mod:ctrl,mod:alt,mod:shift,target=ToonD]
/cast [target=targettarget,harm] Lightning Bolt
/targetlasttarget

keymaps will be the same, but the only issue there is that you wont be able to simply copy/paste the same macro in for all the toons (ie you'll have to change it slightly for each)

Will be adding a little more in future ^^

Ð
This is certainly possible, it just gets annoying managing a lot of different target macros (although its the same within each toon's settings, so not too bad)

What I mentioned doing briefly was having the following macro by itself on some button,

/target [mod:ctrl,mod:shift,nomod:alt,target=ToonA]
[mod:ctrl,mod:alt,nomod:shift,target=ToonB]
[mod:alt,mod:shift,nomod:ctrl,target=ToonC]
[mod:ctrl,mod:alt,mod:shift,target=ToonD]
[mod:ctrl,nomod:alt,nomod:shift,target=ToonE]

Then each ability macro would use a /click command as the first line to call that macro. This works with the default blizz system as well as most addons.

If you're looking to cut the macro short some more, its also possible to remove all the nomod conditionals in the macro, just giving careful thought to the order its in, since without them a ctrl+shift+alt would call the ctrl+shift before getting to where its supposed to act.

Edit:

Another small note, for those like me that have one character do skinning.

Obviously if you're controlling your skinner just skin as usual, no problem.

I found it very annoying though switching back to skinning each time I was playing a different character, so I changed my lightning bolt macro to the following (this was documented somewhere in the wiki or on these forums, this is just the macro to use with this method):

/target [mod:ctrl,mod:shift,nomod:alt,target=ToonA]
[mod:ctrl,mod:alt,nomod:shift,target=ToonB]
[mod:alt,mod:shift,nomod:ctrl,target=ToonC]
[mod:ctrl,mod:alt,mod:shift,target=ToonD]
[mod:ctrl,nomod:alt,nomod:shift,target=ToonE]
/cast [target=targetarget,dead] Skinning; [target=targettarget,harm] Lightning Bolt
/targetlasttarget

That way no matter which toon im controlling, I can either skin regularly, or try to lightning bolt the dead target and my skinner would skin it.