PDA

View Full Version : Managing macros, key binding and local vs server bindings



thinus
04-16-2009, 10:53 PM
Hi,

I have returned to multi-boxing and I am about to setup my 5-box team again. From previous experience I can remember the hassle of setting up key bindings and managing macros for all 5 accounts. I also recall something about Blizzard moving key bindings to be server side.

So, questions:


Are there any software tools to manage your macros and key bindings?
Are there any issues with server vs local regarding macros and key bindings?


I would also love to hear from people who run multiple teams on how you manage your key bindings and macros. I need to find a more efficient method as setting up macros was probably what took the most time last time I multi-boxed, especially while leveling and having to deal with abilities and rotations changing every few levels.

Regards,
Thinus

Lax
04-16-2009, 11:10 PM
ISBoxer (for multi-boxing with Inner Space) has key binding and macro management. You don't need to change any binds or macros in game, you can keep your existing action bars, and the key bindings to the macros will override existing bindings. They will not be stored local or server side and each macro will have a 1023-character limit (done by an Addon similar to Macaroon, Bartender, etc). If you want to use FTL or Focus-based configuration, it's a matter of checking a couple boxes and turning on FTL for key mappings as desired (switching back and forth between them is just as easy).

You would create the macros in the ISBoxer interface and can even have one macro that translates into different things depending on the characters in play. Example:

/startattack
!if (character in "paladins") /cast judgement of light
!if (character in "shamans") /cast Lightning Bolt
!if (character in "deathknights") /castrandom Icy Touch,Plague Strike,Blood Strike,Death Strike,Death Coil,Pestilence

This is my attack spam macro that covers a couple different sets of my characters, and I can swap DKs for shaman any time and not have to worry about it. (note: i do other macros for my shamans to do things other than LB, and my paladin's job is pretty much just to judgement of light)

I also have a macro to invite whichever characters I have in play:

!if ("slot 1" and "me" is not "slot 1") /invite {SLOT1}
!if ("slot 2" and "me" is not "slot 2") /invite {SLOT2}
!if ("slot 3" and "me" is not "slot 3") /invite {SLOT3}
!if ("slot 4" and "me" is not "slot 4") /invite {SLOT4}
!if ("slot 5" and "me" is not "slot 5") /invite {SLOT5}

You can keep any number of teams (Character Sets) and have them use whichever key mappings you configure. The macros are generated depending on the Character, and the Character Set that are loaded, so you might have different macros with the same character (and thus the invite macro works for all). ISBoxer generates a WoW Addon to make all this happen.