1. #1
    Deleted

    [Solved] Help with a Druid macro

    Trying to make an all in one CC macro, so far I've got

    Code:
    /cast [mod:alt,@focus] Entangling Roots;
    /cast [mod:shift,@focus] Hibernate;
    /cast [@focus] Cyclone;

    Is it possible to make this so that when there is no focus target it will cast the spell on the current target (with the different spells for each modifier key)?

    Thanks for any help.
    Last edited by mmoc3ccdda9985; 2012-04-29 at 07:05 PM.

  2. #2
    Code:
    /cast [mod:alt,@focus] Entangling Roots; [mod:alt] Entangling Roots;
    /cast [mod:shift,@focus] Hibernate; [mod:shift] Hibernate;
    /cast [nomod,@focus] Cyclone; [nomod] Cyclone;
    Untested but I believe this should do what you want. I added in the nomod for Cyclone so you don't get the "Another action is in progress" or whatever error.

  3. #3
    Deleted
    Quote Originally Posted by Tahirii View Post
    Code:
    /cast [mod:alt,@focus] Entangling Roots; [mod:alt] Entangling Roots;
    /cast [mod:shift,@focus] Hibernate; [mod:shift] Hibernate;
    /cast [nomod,@focus] Cyclone; [nomod] Cyclone;
    Untested but I believe this should do what you want. I added in the nomod for Cyclone so you don't get the "Another action is in progress" or whatever error.

    Doesn't seem to be working, getting a "You have no target" error. :/

    Thanks for trying though. This one has me befuddled.

  4. #4
    Code:
    #showtooltip
    /cast [mod:alt,@focus,harm][mod:alt] Entangling Roots; [mod:shift,@focus,harm][mod:shift] Hibernate; [@focus,harm][] Cyclone

  5. #5
    Deleted
    Quote Originally Posted by Sakpoth View Post
    Code:
    #showtooltip
    /cast [mod:alt,@focus,harm][mod:alt] Entangling Roots; [mod:shift,@focus,harm][mod:shift] Hibernate; [@focus,harm][] Cyclone
    This works, thanks alot!

Posting Permissions

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