Tip on Generated Focus Macros
Hopefully I'm not repeating well known information, but here is a useful trick I've added to my ISBoxer setup.
I'm boxing three characters, I've got innerspace setup to generate focus macro and broadcast keystroke when I switch the active slot.
After exporting to Innerspace from ISBoxer toolkit then in the wow/interface/addons/ISBoxer directory there are generated lua files for each character:
ISBoxer_Character-Name1.lua
ISBoxer_Character-Name2.lua
ISBoxer_Character-Name3.lua
inside each of those files is some code like this
Code:
isboxer.SetMacro("F8","/focus Name1\n",nil,nil,nil,1);
isboxer.SetMacro("F9","/focus Name2\n",nil,nil,nil,1);
isboxer.SetMacro("F10","/focus Name3\n",nil,nil,nil,1);
I went in and manually edited these to look like:
ISBoxer_Character-Name1.lua
Code:
isboxer.SetMacro("F8","/focus Name1\n/jamba setmeasmaster all\n",nil,nil,nil,1);
isboxer.SetMacro("F9","/focus Name2\n",nil,nil,nil,1);
isboxer.SetMacro("F10","/focus Name3\n",nil,nil,nil,1);
ISBoxer_Character-Name2.lua
Code:
isboxer.SetMacro("F8","/focus Name1\n",nil,nil,nil,1);
isboxer.SetMacro("F9","/focus Name2\n/jamba setmeasmaster all\n",nil,nil,nil,1);
isboxer.SetMacro("F10","/focus Name3\n",nil,nil,nil,1);
ISBoxer_Character-Name3.lua
Code:
isboxer.SetMacro("F8","/focus Name1\n",nil,nil,nil,1);
isboxer.SetMacro("F9","/focus Name2\n",nil,nil,nil,1);
isboxer.SetMacro("F10","/focus Name3\n/jamba setmeasmaster all\n",nil,nil,nil,1);
This way when I switch characters they also automatically become the jamba leader and all my tells / jamba messages get sent there.
I find it very useful to have this happen automatically and just wanted to share this tip.