1. #1

    help adding a modifier to a macro

    hi,

    i'm wondering if its possible to add an alt modifier to this macro:

    #showtooltip ascendance
    /cast ascendance
    /cast spiritwalker's grace

  2. #2
    Code:
    #showtooltip ascendance
    /cast [mod:alt]ascendance
    /cast spiritwalker's grace
    OR

    Code:
    #showtooltip ascendance
    /cast ascendance
    /cast [mod:alt]spiritwalker's grace

  3. #3
    The Forgettable Forgettable's Avatar
    10+ Year Old Account
    Join Date
    May 2010
    Location
    Calgary, Canada
    Posts
    5,180
    If you want to see the spell icon you would be using on your bar, use this slightly modified macro:

    #showtooltip
    /cast ascendance
    /cast [mod:alt]spiritwalker's grace

    This will show the Ascendance icon normally, and Spiritwalker's Grace when Alt is pressed.

  4. #4
    well i guess i should have gone a little further with what i'm looking for. i'm looking to keep ascendance and spiritwalker's grace together and add the modifier for potion of the jade serpent.

    so what i picture is something like this, even though i know this would never work:

    #showtooltip
    /cast [mod:alt]potion of the jade serpent; ascendance + spiritwalker's grace

  5. #5
    Pandaren Monk shanthi's Avatar
    10+ Year Old Account
    Join Date
    Oct 2011
    Location
    California
    Posts
    1,775
    Quote Originally Posted by nolliepop View Post
    well i guess i should have gone a little further with what i'm looking for. i'm looking to keep ascendance and spiritwalker's grace together and add the modifier for potion of the jade serpent.
    Code:
    #showtooltip Ascendance
    /use [mod:alt] Potion of the Jade Serpent
    /cast Ascendance
    /cast Spiritwalker's Grace

    This will always cast Ascendence and Spiritwalker's Grace when you hit the button (assuming they are off cooldown) and optionally also use a potion if you are also pressing alt.

    If you want it to only use the potion (and not cast the other two spells) when you press alt, use this:

    Code:
    #showtooltip Ascendance
    /use [mod:alt] Potion of the Jade Serpent
    /cast [nomod] Ascendance
    /cast [nomod] Spiritwalker's Grace
    Last edited by shanthi; 2013-10-16 at 09:34 PM.
    That is not dead which can eternal lie.
    And with strange aeons even death may die.

  6. #6

  7. #7
    And if you want to protect yourself from wasting potions on accident, you can go even a step further.

    Code:
    #showtooltip Ascendance
    /use [mod:alt][combat] Potion of the Jade Serpent
    /cast [nomod] Ascendance
    /cast [nomod] Spiritwalker's Grace
    Lets say you're just bouncing around at Shrine, and accdiently hit your keybind + alt, it won't use your potion.

    This is my funky Hunter Macro.

    Code:
    #showtooltip Kill Command
    /cancelaura Deterrence
    /cancelaura Hand of Protection
    /use [nocombat,mod:shift,harm]Virmen's Bite
    /cast [nomodifier,harm] Bestial Wrath
    /cast [nomodifier,harm] Berserking(Racial)
    /cast Dash
    /use [harm] 10
    /cast Kill Command

Posting Permissions

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