1. #1

    Looking for a (most likely) complex Shaman macro.

    All my abilities are macro'd to be nomod and mod:shift.

    I'm having trouble finding a way to macro my imbues though.

    Currently my Frostbrand/Flametongue imbues are,

    #showtooltip
    /cast [nomod]Frostbrand Weapon;[mod:shift]Healing Rain

    and

    #showtooltip
    /cast [nomod]Flametongue Weapon;[mod:shift]Bloodlust

    How do I add in the "use 16/17" for the imbues so they stop being randomly applied, while keeping Healing Rain and Bloodlust in there as a shift modification?

  2. #2
    You can probably do this.

    Code:
    #showtooltip
    /cast [mod:shift]Healing Rain;Frostbrand Weapon
    /use 17
    Code:
    #showtooltip
    /cast [mod:shift]Bloodlust;Flametongue Weapon
    /use 17
    etc.

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  3. #3
    Would you consider putting the weapon chants on the same macro and the spells on their one together too?

    /cast [nomod, @none] Flametongue Weapon;[mod:shift, @none] Frostbrand Weapon
    /use 16;[mod:shift] 17
    /click StaticPopup1Button1
    Last edited by Klawz; 2011-08-21 at 02:58 PM. Reason: Working on alt. way to keep your 1 imbu 1 spell format.. gimme a moment.

  4. #4
    Quote Originally Posted by lawomous View Post
    You can probably do this.

    Code:
    #showtooltip
    /cast [mod:shift]Healing Rain;Frostbrand Weapon
    /use 17
    Code:
    #showtooltip
    /cast [mod:shift]Bloodlust;Flametongue Weapon
    /use 17
    etc.
    This worked flawlessly.

    Thanks.
    Last edited by Pavidus; 2011-08-24 at 01:58 AM. Reason: Nvm. Lied. Healing Rain won't work with it, but Bloodlust will.

  5. #5
    I will unfortunately have to combine them. For some reason, Bloodlust works with the macro, but Healing Rain will not.

    I can't log in right now to try this one out, but do I have to use the click feature or can I use keybinds?

  6. #6
    Likely because Healing Rain uses a targetting circle and the /use command is cancelling it. Try having the Use on a nomod.

    Code:
    #showtooltip
    /cast [mod:shift]Healing Rain; Frostbrand Weapon
    /use [nomod:shift] 17
    Just a question, considering healing rain and bloodlust are likely to be needed more than last minute weapon imbues - wouldn't it make more sense to have the imbues on the modifier?

    To automate confirming the imbue change you could use:
    Code:
    #showtooltip
    /cast [mod:shift]Healing Rain; Frostbrand Weapon
    /stopmacro [mod:shift]
    /use 17
    /click StaticPopup1Button1
    Last edited by Judge40; 2011-08-24 at 08:36 AM.

  7. #7
    Quote Originally Posted by Judge40 View Post
    Likely because Healing Rain uses a targetting circle and the /use command is cancelling it. Try having the Use on a nomod.

    Code:
    #showtooltip
    /cast [mod:shift]Healing Rain; Frostbrand Weapon
    /use [nomod:shift] 17
    Just a question, considering healing rain and bloodlust are likely to be needed more than last minute weapon imbues - wouldn't it make more sense to have the imbues on the modifier?

    To automate confirming the imbue change you could use:
    Code:
    #showtooltip
    /cast [mod:shift]Healing Rain; Frostbrand Weapon
    /stopmacro [mod:shift]
    /use 17
    /click StaticPopup1Button1
    Woot. That first one worked. Thanks.

Posting Permissions

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