1. #1
    Deleted

    Need Help with Macro/

    Hee guys. need a quick help with my macro here,

    I started to use the mod macro for Shift/Alt ( works perfect btw ) but i stumble on my /focus macros..

    #showtooltip
    /cast [nomod] Fervor; [mod:alt] [target=focus] Scatter Shot; [mod:shift] [target=focus] Silencing Shot; won't work

    It does it with fervor / Scatter shot how ever if i want to silence shot it won't work.

    any help?

  2. #2
    #showtooltip
    /cast [nomod]Soothing Mist; [@focus, mod:alt]Crackling Jade Lightning; [@focus, mod:shift] Disable;

    Just tried this out (just replace the spells) and it works just fine for me.

  3. #3
    Deleted
    If you put two conditionals in separate brackets, they are separate. Your macro reads like this:
    Code:
    1. If no modifier is pressed, cast Fervor and stop execution.
    2. If alt is pressed, cast Scatter Shot and stop execution.
    3. Cast Scatter Shot at the unit "focus" and stop execution.
    4. If shift is pressed, cast Silencing Shot and stop execution.
    5. Cast Silencing Shot at the unit "focus" and stop execution.
    You want the following:
    Code:
    #showtooltip
    /cast [mod:alt,@focus]Scatter Shot; [@focus,mod:shift]Silencing Shot; Fervor
    Which equals to:
    Code:
    1. If alt is pressed, cast Scatter Shot at unit "focus" and stop execution.
    2. If shift is pressed, cast Silencing Shot at unit "focus" and stop execution.
    3. Cast Fervor and stop execution.

Posting Permissions

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