1. #1

    Focus on [mod:ctrl] command

    Not the best at macros; but basic, I can handle

    I currently use two different macros for PvE Mind Controlling, one which sets focus and uses the spell on the focus and one which leaves out the focus command.
    The best I could come up with is:
    Code:
    #showtooltip Mind Control
    /focus
    /cast [mod:ctrl] Mind Control
    /cast [nomod, target=focus] Mind Control
    But having focus under anything but a modifier makes this macro completely useless...

    Any help is appreciated!

  2. #2
    What you shuld do is to not have the focus command in the same macro as the /cast spell macro.
    You shuld make a separate macro for focus and one other for your /cast spell.

    Other then that your macro shuld work fine. If it dont you might want to try this one.

    #showtooltip Mind Control
    /cast [nomod] [target=focus] Mind Control
    /cast [mod:ctrl] Mind Control

  3. #3
    Thanks for that! Combining regular cast and focus cast would be quicker.

    Thanks for your help!

  4. #4
    This should work as an all-in-one

    Code:
    #showtooltip Mind Control
    /clearfocus [@focus, dead][@focus, noharm][mod:alt]
    /use [mod:ctrl] Mind Control
    /stopmacro [mod:ctrl]
    /focus [@focus, noexists]
    /use [@focus] Mind Control
    Will clear focus if it's dead, friendly or if you hold alt (to force a focus change)
    Cast MC on target if ctrl is held
    If ctrl not held and no focus then focuses your current target
    Casts MC on focus if ctrl not held.

Posting Permissions

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