Are there any advantages to keeping your wow macros in game and not porting them to ISBoxer? I get really excited when i see people post their ISBoxer profile but their profile rarely gives me any ideas for improvement to my own profile. I rarely see wow macros kept on ISBoxer side anymore. Does the KISS concept make it overwhelmingly advantageous to simply keep them all in game?
Example
If you want to look at my work in progress. backup your project or dont save your current profile after you copy my macros over. My keycombo's may confilct with yours. I'm returning from a long break and rebuilding mine so they are very raw and unrefined. I'm also trying to improve upon my old old similar class spell thread.
My Game Helpers>World of Warcraft>Macro Sets>paste wow macro sets from clipboard
Sources
Macro DB Forum
Khatovar's Advanced Macro's Post
Khatovar's Super Awesome Useful Macros
The MoP Macro Library
General Macro Sites
WoW Lazy Macros
Arena Junkies
Details
WoW Wiki
Wowhead
Troubleshooting Macro's
Possible WoW Key Combinations
You have eight per key to choose from with this kind of macro. these are in yellow in the conflict tracker.
examples:
1) unmodified Y
2) Shift Y
3) Ctrl Y
4) Alt Y
5) Alt+Shift Y
6) Alt + Control Y
7) Shift + Control Y
8) Shift + Alt + Control Y
keycombo.png
Get the spreadsheet here
WoW Key Combination Conflicts
A macro you are trying to add to your profile can seem like its broken if its not assigned assigned a key combination or is given a keycombo which is in conflict with other key combinations. There are Blizzard binds, Windows Binds, ISboxer Defaults, ISBoxer User created macros, ISBoxer FTL modifers, and ISBoxer macros that include "Allow extra modifers". All the keybinds you have in your blizzard bindings may conflict with isboxer as well. I don't want my bags popping up in my face while im spamming my dps key. I have these mapped in Brown to avoid those they will be different on your clients. There are some semi hidden ISBoxer binds that you should avoid. for example assigning Alt-F4 to a macro will make client seem to crash because F4 exits the that current client. These are in blue in the conflict tracker. Avoid key combinations that are taken by windows. some examples of these are the dreaded windows key, Alt-Tab, ctrl Escape, and control alt delete. These are Black in the conflict tracker.
Also: From this Thread

Originally Posted by
Fogyreef
Can't remember what key combos you have used? Can't find that duplicate key combo?
The following Excel 2010 file reads your ISBoxer configuration file and parses it for all of your key combinations.
Download:
ISBoxer XML KeyMap Parser v4.2.xlsm
Updated: 5/7/12
Bug and logic tweaks
Clearer color coding
Typo's
One of the biggest problems with macros is a typo. <wrong> /cast healing wavw <correct>/cast healing wave
Incorrect Syntax
<wrong> /cast healingwave <correct> /cast healing wave consider using Fitzcairn's Macro Explain-O-Matic to validate macros
Addons
You have inspect the blizzard binds after installing an addon as installed addons sometimes take up key combination resources. Most experienced multiboxers use the very minimum amount of addons. At the end of your changes when you export your isboxer profile to Innerspace ISBoxer will warn you when you if any of your Game Helper macro's have keybind conflicts. It will tell you which macros are under conflict but it wont show you which keybinds are still open create a spreadsheet to track them yourself so your not finding open key combinations by trial and error.
Reload
If a macro doesnt seem to work in game after you've made a tweak. Do a /reload in game so that the changed isboxer addon's macro's takes effect. This is probally the #1 reason peoples macros dont seem to work for them.
big changes - when making adjustments make it a little at a time. if you make 10 changes and afterwards something is wrong you will have to look at all ten of those macros to see what the problem is instead of just troubleshooting that last two changes you made.
Understanding Multiple Modifier Macros
General Macro's
Code:
/cast [harm] Lightning Bolt; [help] Healing Wave
Dynamic Macros
I used to have just about all the key combinations on my keyboard taken up before i found these conditionals. You can create one macro for all your classes if your smart and you cluster similar spells together. or spells that compliment each other best. So instead of creating and managing six separate macros you can drop them all in one. and save six key combinations!
Code:
!if (character in "Class Shaman") /cast [harm] Lightning Bolt; [help] Healing Wave
!if (character in "Class Death Knight") /cast [harm] Festering Strike
!if (character in "Class Priest") /cast Smite
!if (character in "Class Warlock") /cast Incinerate
!if (character in "Class Paladin") /cast Hammer of the Righteous
!if (character in "Class Mage") /cast Frostbolt
Code:
!if (character in "Class Priest") /cast Smite
•if you have any toons in your group that are in an "Action Target Group" named "Class Mage" exactly, then have that toon(s) cast Frostbolt
Code:
!if ("slot 1" and character is not "slot 1") /invite {SLOT1}
so if you had your toon2 execute this it would /invite toon1
this is used with 4 other lines to add the whole group.
Code:
!if (character is "slot 1" and character in "Class Shaman") /cast [@{SLOT2},exists,dead][@{SLOT3},exists,dead][@{SLOT4},exists,dead][@{SLOT5},exists,dead] Ancestral Spirit
If you have a toon in slot 1 and on top of that he is also in Action Target Group named "class shaman" exactly then search for dead toons in your party in this order to rez toon2 toon3, toon4, and then toon5.
Read this wiki article to read more and see more examples.
Macro's With Modifiers
ISBoxer "allow extra modifers" are there to allow for macros that use modifiers in the macro. These are in purple in the conflict tracker.
Code:
/cast [nomodifier] <Mount of your choice>
/cast [modifier:ctrl] Find Minerals
/cast [modifier:shift] Find Herbs
/cast [modifier:alt] Smelting
FTL Macro's
The "Can use FTL Modifiers" requires the "Allow extra modifiers" checked to work correctly. You really dont need to create any additional FTL macros but some folks have had great idea's. Like Zorba The Geek's Targeting Modes If you dont plan on creating FTL macros you still need to know what current macros use macros to avoid those keybinds. These are in Red in the conflict tracker.
**moderators feel free to edit**
Connect With Us