1. #1
    Dreadlord Cuzzin's Avatar
    10+ Year Old Account
    Join Date
    Oct 2010
    Location
    Planet Earth
    Posts
    882

    Need a Macro Master

    Ok so this macro I want is for resto druid pvp in arenas. I want one button to press that uses rejuvenation on friendly target, moon fire on enemy target, and mangle bear when im in bear form.

    I know this part
    /cast [harm]Moonfire; [noharm]Rejuvenation

    How do I add the mangle in bear form part?
    Semper Fi

  2. #2
    Since you can use moonfire in bear form, you can't have a macro that automatically uses both moonfire and mangle. If you just place them in, it will only ever use the first one listed, and if you use /castsequence, it will use one, then the second one, then get stuck on the first one until it comes off of cooldown. If you're okay with constantly casting moonfire-mangle-moonfire-mangle, here's your macro:

    Code:
    #showtooltip
    /cast [help] Rejuvenation;
    /castsequence [stance:1,harm] reset=combat/target Moonfire, Mangle

    This will cast rejuvenation on friendly targets and cycle moonfire and mangle. The cycle resets when combat ends or you switch targets, so moonfire will always be the first spell used. Here's another option where you can use a modifier key:

    Code:
    #showtooltip
    /cast [help] Rejuvenation; [mod:shift,harm] Moonfire; [stance:1,harm] Mangle

    This will let you spam mangle, but holding shift casts moonfire.

    As a note, the bear form part of the macro is [stance:1]. 2 is cat, 3 is travel, and 4 is moonkin.
    Last edited by Kanegasi; 2017-12-23 at 02:20 AM.
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  3. #3
    Dreadlord Cuzzin's Avatar
    10+ Year Old Account
    Join Date
    Oct 2010
    Location
    Planet Earth
    Posts
    882
    Quote Originally Posted by Kanegasi View Post
    Since you can use moonfire in bear form, you can't have a macro that automatically uses both moonfire and mangle. If you just place them in, it will only ever use the first one listed, and if you use /castsequence, it will use one, then the second one, then get stuck on the first one until it comes off of cooldown. If you're okay with constantly casting moonfire-mangle-moonfire-mangle, here's your macro:

    Code:
    #showtooltip
    /cast [help] Rejuvenation;
    /castsequence [stance:1,harm] reset=combat/target Moonfire, Mangle

    This will cast rejuvenation on friendly targets and cycle moonfire and mangle. The cycle resets when combat ends or you switch targets, so moonfire will always be the first spell used. Here's another option where you can use a modifier key:

    Code:
    #showtooltip
    /cast [help] Rejuvenation; [mod:shift,harm] Moonfire; [stance:1,harm] Mangle

    This will let you spam mangle, but holding shift casts moonfire.

    As a note, the bear form part of the macro is [stance:1]. 2 is cat, 3 is travel, and 4 is moonkin.
    Ok wow thanks for the reply im gunna have to look at this in the morning when im a bit more sober.
    Semper Fi

  4. #4
    Deleted
    you could also use
    Code:
    #showtooltip
    /cast [help] Rejuvenation;
    /cast [stance:1,harm] Mangle
    /cast [stance:0,harm] Moonfire
    this would only use moonfire in humanoid form tho

    and if tree form is a thing at the moment you would have to add /cast [stance:5,harm] Moonfire
    Last edited by mmoc2e5b8dbff7; 2017-12-23 at 11:12 AM.

  5. #5
    Quote Originally Posted by turtlefreak View Post
    and if tree form is a thing at the moment you would have to add /cast [stance:5,harm] Moonfire
    Tree form is [stance:4], and it's only resto's incarnation. The glyph tree form for fun doesn't trigger stance macros.
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  6. #6
    Deleted
    you are right, and that my friends is why you don't use wowwiki

  7. #7
    Wowwiki has been dying for seven years. Use wowpedia: https://wow.gamepedia.com/Form#Macro_form_numbers
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

Posting Permissions

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