1. #1

    need help with macro

    This is the macro i wanna use but it doesnt work somehow,
    its supposed to let me heal my m8s in arena with the need of targeting them.
    would be nice if somebody knows where the problem is.

    /cast [nomod]Flash of light;
    [mod:ctrl,target=name1]Flash of light;
    [mod:shift,target=name2]Flash of light:

  2. #2

    Re: need help with macro

    apologies, i dont know how to do the macro that way, but you may find success with a mouseover macro like:

    #showtooltip
    /cast [target=mouseover] flash of light
    /cast flash of light

    if no mouseover it will heal your current target... just hover over your buds and heal em up

  3. #3

    Re: need help with macro

    I think that's just to complex really...

    /target name
    /Cast Flash of Light
    /target name
    /Cast Flash of Light

  4. #4

    Re: need help with macro

    Quote Originally Posted by Domino_O
    This is the macro i wanna use but it doesnt work somehow,
    its supposed to let me heal my m8s in arena with the need of targeting them.
    would be nice if somebody knows where the problem is.

    /cast [nomod]Flash of light;
    [mod:ctrl,target=name1]Flash of light;
    [mod:shift,target=name2]Flash of light:
    Try putting it all on one line if it isn't already. So it should look like :
    Code:
    /cast [nomod] Flash of light; [mod:ctrl,target=name1] Flash of light; [mod:shift,target=name2] Flash of light
    Also make sure there are spaces after the ]

    Hope that helps.

  5. #5

    Re: need help with macro

    AHA!

    After some thinking I realized the whole macro was messed up. You only use ; when you're using diff spells like:
    Code:
    /cast [harm] Mind Blast;Greater Heal
    That macro will cast Mind blast if your target is harmful(an enemy). If you're target is friendly you will cast greater heal on him.

    Every [] acts a an IF-statement.
    This one should work:
    Code:
    /cast [mod:ctrl, target=name1][mod:shift, target=name2][] FLash of Light
    Edit: typos

  6. #6

    Re: need help with macro

    /cast [nomod]Flash of light;
    [mod:ctrl,target=name1]Flash of light;
    [mod:shift,target=name2]Flash of light

    remove the :

    (Though I dont know if it s possible to pass the name ass target param, I think its waiting for a target like target=party1

    Quote Originally Posted by gollie
    AHA!

    After some think I realized the whole macro was messed up.

    You only use ; when you're using diff spells like:

    no thats not correct. Its pretty much a else statement if the first expression is not true

    /cast [modifier:shift,target=focus] Counterspell; [target=mouseover,exists] CounterSpell; Counterspell

    (I know you can even shorten it but I just wanted to show how its workin)

  7. #7

    Re: need help with macro

    Quote Originally Posted by emjay
    /cast [nomod]Flash of light;
    [mod:ctrl,target=name1]Flash of light;
    [mod:shift,target=name2]Flash of light

    remove the :

    (Though I dont know if it s possible to pass the name ass target param, I think its waiting for a target like target=party1
    I misread the original macro, and I believe this is correct.

    This macro should work
    Code:
    /cast [nomod] Flash of light; [mod:ctrl,target=party1] Flash of light; [mod:shift,target=party2] Flash of light
    You would be considered as Party0, First person in your group UI is Party1, 2nd is Party2 etc.

    Edit: Has the added benefit that if you have an extra person in your 3's who rotates in, or you run skirmishes when bored, you will not need to change the macro

  8. #8

    Re: need help with macro

    that's what i was used to use:

    #showtooltip flash of light
    /cast [mod:ctrl, target=name] flash of light
    /cast flash of light

  9. #9
    Bloodsail Admiral Elovan's Avatar
    10+ Year Old Account
    Join Date
    Oct 2009
    Location
    In my chair (unless I'm on the floor...)
    Posts
    1,027

    Re: need help with macro

    the main problem in the macro is you have your target= mod: switched around. target= comes first, then all your conditions like mod:

Posting Permissions

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