Close
Showing results 1 to 4 of 4
  1. #1

    Default 2 Dual Box Shaman Healing Macro

    Basically I suck with macros and every attempt I try to make this macro it turns out unsuccessful.

    What I want to do is:

    For example:

    Lesser healing wave is keybinded to "2"

    Once 2 is pressed they both heal themselves, once Alt+2 is pressed they both heal "Char B", once Ctrl+2 is pressed they both heal "Char A".


    I tried doing:

    CharA:
    /cast [target=Char A] Lesser Healing Wave
    /cast [target=focus,mod:ctrl] Lesser Healing Wave
    /cast [target=Char B,mod:alt] Lesser Healing Wave

    (The focus is Char A on both)

    CharB:
    /cast [target=Char B] Lesser Healing Wave
    /cast [target=focus,mod:ctrl] Lesser Healing Wave
    /cast [target=Char B,mod:alt] Lesser Healing Wave

    It works fine normally (the first one) But the other 2 (when I use ctrl and alt) still do the same as the first line. Can someone help fix my noob macro skills please?

  2. #2

    Default

    You did not include nomod in your first line, thus thats the action that would always happen reguardless of whatever mod keys you are holding down. So just add it in nomod:

    Code:
    CharA:
    /cast [nomod, target=Char A] Lesser Healing Wave
    /cast [target=focus,mod:ctrl] Lesser Healing Wave
    /cast [target=Char B,mod:alt] Lesser Healing Wave
    
    (The focus is Char A on both)
    
    CharB:
    /cast [nomod, target=Char B] Lesser Healing Wave
    /cast [target=focus,mod:ctrl] Lesser Healing Wave
    /cast [target=Char B,mod:alt] Lesser Healing Wave

  3. #3

  4. #4

    Default

    Hmmm the Ctrl one doesnt seem it work, for it to work i need to press 2 then Ctrl, whereas on the alt I can do it normally.


    EDIT: Nevermind, it was cause they were keybound to something else

Posting Rules

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