1. #1

    Is there a way of making my mouseover when I press Selfcast key?

    Hi.

    Haven't found a topic on this but is there a way of making my mousovermacro Selfcast when i press down Alt?..

    I tried:
    #showtooltip
    /cast [target=mouseover, exists] Lesser Healing Wave; Lesser Healing Wave;[mod:Alt target=Player] Lesser Healing Wave

    But this isn't working ...

    I'm rather new to the Macro thingy, but I would really appreciate any help I can get

    Awesu

  2. #2

    Re: Is there a way of making my mouseover when I press Selfcast key?

    In any macro you have to put the highest priority action first.
    Code:
    /cast [mod:alt,@player][@mouseover,exists,help,nodead][] Lesser Healing Wave
    The macro will be executed as follows:
    • Check if alt is pressed, if it is, cast at player
    • Check if you're hovering a friendly unit that's not dead,cast at him
    • Finally, just behave as normal spell if both previous conditions aren't met

    edit: It's a newer macro formatting I've depicted here. The older syntax equivalent macro would be this:

    Code:
    /cast [modifier:alt,target=player][target=mouseover,exists,help,nodead] Lesser Healing Wave;Lesser Healing Wave
    However I'd suggest sticking to a newer (shorter and "sexier") format.

  3. #3

    Re: Is there a way of making my mouseover when I press Selfcast key?

    Thanks a lot

    I know this is kind of programming and I took a class in school but sucked at it so just writing like random things that sounds good :P

    But this really helped me, thank you!!!

    Awesu

Posting Permissions

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