Close
Showing results 1 to 6 of 6

Threaded View

  1. #1

    Default Guide: Using ISBoxer Based Macros, conserving key-combinations and resolving conflicts

    You want to let isboxer handle your macros because instead of editing your macros across all your clients you can now do it centrally. This makes Improving your setup less Daunting.
    Quote Originally Posted by ZorbaTheGeek View Post
    Like you, Jack, all my macros are stored within ISBoxer and generated at export into the ISBoxer addon. Once you're setup like this you no longer need action bars, or the keybinds made to them.

    I literally have 12-15 keys bound inside the game options (everything else was systematically unbound), with a few more bound to addons. Most of my gamehelper macros are bound to CTRL or ALT numpad keys (SHIFT is dodgey on the numpad) or combinations of CTRL, ALT and SHIFT with letter and function keys (Don't forget to avoid ALT-F4 =P).

    Creating a Macro

    Game Helpers>World of Warcraft>Quick Setup38

    Right click new wow macro and input your macro


    General Macro's

    example:
    Code:
    /cast [harm] Lightning Bolt; [help] Healing Wave
    assign a key combination. you have eight 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

    if we chose Y then that key combination would be closed and no longer available.

    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!

    example:
    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
    explanations of the conditionals used:

    !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

    !if ("slot 1" and character is not "slot 1") /invite {SLOT1}
    •if you have a toon in "slot 1"(client1/toon1) and on top of that you have any other toons that are NOT in slot one(your first slot), then /invite slot 1
    so if you had your toon2 execute this it would /invite toon1
    this is used with 4 other lines to add the whole group.

    !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.

    example:
    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.

    example
    Code:
    /assist {FTL}


    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. Innerspace closes the client when you press alt F4. 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, and ctrl Escape. These are Black in the conflict tracker.

    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.


    keycombo tracker
    Last edited by JackBurton : 04-16-2012 at 11:36 PM Reason: more info
    Just remember what ol' Jack Burton does when the earth quakes, and the poison arrows fall from the sky, and the pillars of Heaven shake. Yeah, Jack Burton just looks that big ol' storm right square in the eye and he says, "Give me your best shot, pal. I can take it"

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •