1. #1
    Legendary! MonsieuRoberts's Avatar
    10+ Year Old Account
    Join Date
    May 2010
    Location
    Weeping Squares, Vilendra, Solus
    Posts
    6,621

    [MACRO]Bladestorm/Dragon's Roar adaptive macro

    I want one button that will show the tooltip for and activate/cancel either Dragon's Roar or Bladestorm, whichever I've chosen. Not sure how to tell the game to show me the tooltip for the one I've chosen, though.

    Right now I'm just using:
    Code:
    /cast Dragon's Roar
    /cast Bladestorm
    /cancelaura Bladestorm
    But it doesn't show tooltip, and something like this doesn't work properly:
    Code:
    #showtooltip Dragon's Roar 
    #showtooltip Bladestorm
    /cast Dragon's Roar
    /cast Bladestorm
    /cancelaura Bladestorm
    Is there a way to tell the game to show me the tooltip depending on which talent I've chosen?
    ⛥⛥⛥⛥⛥ "In short, people are idiots who don't really understand anything." ⛥⛥⛥⛥⛥
    [/url]
    ⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥ ⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥

  2. #2
    Code:
    #showtooltip
    /cast Dragon Roar
    /cast Bladestorm
    /cancelaura Bladestorm
    /script m_dr=GetSpellInfo(118000); m_bs=GetSpellInfo(46924);
    /run SetMacroSpell("60 Talents", GetSpellInfo(m_dr) or GetSpellInfo(m_bs))
    The macro must be named "60 Talents" (no quotes). If you want to name it something different, then change the SetMacroSpell to change the macro name of your choice.

    Come WoD, this will be your macro

    Code:
    #showtooltip
    /cast [talent:4/1] Bladestorm; [talent:4/3] Dragon Roar;
    /cancelaura Bladestorm

  3. #3
    Legendary! MonsieuRoberts's Avatar
    10+ Year Old Account
    Join Date
    May 2010
    Location
    Weeping Squares, Vilendra, Solus
    Posts
    6,621
    Quote Originally Posted by Clebane View Post
    Code:
    #showtooltip
    /cast Dragon Roar
    /cast Bladestorm
    /cancelaura Bladestorm
    /script m_dr=GetSpellInfo(118000); m_bs=GetSpellInfo(46924);
    /run SetMacroSpell("60 Talents", GetSpellInfo(m_dr) or GetSpellInfo(m_bs))
    The macro must be named "60 Talents" (no quotes). If you want to name it something different, then change the SetMacroSpell to change the macro name of your choice.

    Come WoD, this will be your macro

    Code:
    #showtooltip
    /cast [talent:4/1] Bladestorm; [talent:4/3] Dragon Roar;
    /cancelaura Bladestorm
    Thank you! Works great.
    Last edited by MonsieuRoberts; 2014-08-11 at 07:58 PM.
    ⛥⛥⛥⛥⛥ "In short, people are idiots who don't really understand anything." ⛥⛥⛥⛥⛥
    [/url]
    ⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥ ⛥⛥⛥⛥⛥⛥⛥⛥⛥⛥

  4. #4
    I strongly recommend http://www.curse.com/addons/wow/talentmacros instead -- it is an addon, but zero runtime overhead. It gives you a macro that it rewrites to the appropriate talent when you switch, which obviously works fine because, y'know, macro.

    The reason I recommend this rather than the various others is that it also allows you to change the macro -- it basically has a default macro of "use the ability", but you can customize it any way you want. This is useful for, eg, talents that you want to stack with other CDs or whatever.

    Also, no more "have to hit the button before it notes the talent switch" problem, unlike the macro shown.

Posting Permissions

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