1. #5261
    Anyone can help me with a macro, I have used it before so it should be possible.
    Code:
    #showtooltip
    /use [nomod, #party1] Roar of Sacrifice
    /use [mod:shift, #party2] Roar of Sacrifice
    /use [mod:ctrl, #player] Roar of Sacrifice
    I want to have mouseover on the ctrl modifier also.

    Like this: if I press ctrl-X (the keybind for the macro is 'X') and have a mouseover, it will cast sacrifice on that unit. But if I have no mouseover, it will cast on myself.

    My guess would be something like;
    Code:
    #showtooltip
    /use [nomod, #party1] Roar of Sacrifice
    /use [mod:shift, #party2] Roar of Sacrifice
    /use [mod:ctrl, #mouseover, exists, #player] Roar of Sacrifice; Roar of Sacrifice
    Something like that.


    I'll try to clarify once more (from keybind view):
    'X' =sac on party1
    'shift-X' =sac on party2
    'ctrl-X' =sac on self but on mouseover if it exists

    Note: I replaced the "at"-icon with "#" since I cant post otherwise. ;s

  2. #5262
    Quote Originally Posted by Talfy123 View Post
    Anyone can help me with a macro, I have used it before so it should be possible.
    -snip-
    Something like that.


    I'll try to clarify once more (from keybind view):
    'X' =sac on party1
    'shift-X' =sac on party2
    'ctrl-X' =sac on self but on mouseover if it exists

    Note: I replaced the "at"-icon with "#" since I cant post otherwise. ;s
    Hm try this:
    Code:
    #showtooltip
    /cast [mod:shift,@party2][mod:ctrl,@mouseover,help,nodead][mod:ctrl,@player][@party1,nodead][]Roar of Sacrifice

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  3. #5263
    Deleted
    Would be great if some1 could help me..

    I want to use many Worldmarkers by using a makro and Tomtom, but the 255 spaces arn't enough. Is there a way to make a makro start another makro? I tried a bit but couldn't find out how to.

  4. #5264
    Quote Originally Posted by lawomous View Post
    Hm try this
    Thanks! I think it works.

    I was just wondering if its possible to make a non-modifier macro for it...

    I want it to prioritize mouseover, but then party 1 if no mouseover.

    Something like this i think?:

    #showtooltip
    /cast [#mouseover, exists, #party1] Intervene; Intervene

  5. #5265
    Quote Originally Posted by Deathhimself1234 View Post
    Would be great if some1 could help me..

    I want to use many Worldmarkers by using a makro and Tomtom, but the 255 spaces arn't enough. Is there a way to make a makro start another makro? I tried a bit but couldn't find out how to.
    http://www.curse.com/addons/wow/paste


  6. #5266
    Quote Originally Posted by Talfy123 View Post
    Thanks! I think it works.

    I was just wondering if its possible to make a non-modifier macro for it...

    I want it to prioritize mouseover, but then party 1 if no mouseover.

    Something like this i think?
    Try this:
    Code:
    #showtooltip
    /cast [@mouseover,help,nodead][@party1,nodead][]Intervene

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  7. #5267
    Quote Originally Posted by Juvencus View Post
    Almost certainly right for "many tomtom waypoints to create". For the general case the Macro Toolkit addon comes with the ability to create "extended" macros up to 1024 characters long.

    (It creates a secure button with the macro text in the background, and makes your normal macro slot into `/click ...`, which works transparently, and is fully ToS complaint.

  8. #5268
    Quote Originally Posted by lawomous View Post
    Try this:
    thanks!

    decided to make one more macro. but it wont work, why?
    Code:
    #showtooltip
    /use [#mouseover,help,nodead][#party1,nodead][#pet,nodead][]Misdirection
    Prio1:mouseover
    Prio2arty1
    Prio3et (if not party1 or mouseover)

    It wont work for my pet outside grp. I have to mouseover it.

    EDIT: think i fixed it. added "party1,exists,nodead" ...guess the macro thought there was a party1 member
    Last edited by Rebark90; 2014-11-09 at 07:15 PM.

  9. #5269
    I'd like a macro for chakra dancing if possible. If I'm in Chakra: Sanctuary, I want it to activate Chakra: Serenity and vice versa.

    Edit: Something like
    Code:
    #showtooltip
    /cast [stance:2] Chakra: Serenity; [stance:3] Chakra: Sanctuary
    except I want it to work
    Last edited by Overdispersion; 2014-11-11 at 12:27 PM.

  10. #5270
    Pandaren Monk shanthi's Avatar
    10+ Year Old Account
    Join Date
    Oct 2011
    Location
    California
    Posts
    1,775
    Quote Originally Posted by Overdispersion View Post
    I'd like a macro for chakra dancing if possible. If I'm in Chakra: Sanctuary, I want it to activate Chakra: Serenity and vice versa.

    Edit: Something like
    Code:
    #showtooltip
    /cast [stance:2] Chakra: Serenity; [stance:3] Chakra: Sanctuary
    except I want it to work
    Chakras aren't considered stances, unfortunately.

    Since the the stance conditionals don't work and you can't test for buffs, I believe this is the best you can do:

    Code:
    #showtooltip
    /castsequence Chakra: Serenity, Chakra: Sanctuary

    The downside of this is that if you're already in the one that the macro sequence is on (like you're already in Chakra: Serenity the first time you press this macro), it won't do anything or move to the next one. So you'll have to be sure that at the start of a raid/dungeon, the one you're in isn't the one the macro is on.
    Last edited by shanthi; 2014-11-11 at 04:34 PM.
    That is not dead which can eternal lie.
    And with strange aeons even death may die.

  11. #5271
    Quote Originally Posted by shanthi View Post
    Chakras aren't considered stances, unfortunately.

    Since the the stance conditionals don't work and you can't test for buffs, I believe this is the best you can do:

    Code:
    #showtooltip
    /castsequence Chakra: Serenity, Chakra: Sanctuary

    The downside of this is that if you're already in the one that the macro sequence is on (like you're already in Chakra: Serenity the first time you press this macro), it won't do anything or move to the next one. So you'll have to be sure that at the start of a raid/dungeon, the one you're in isn't the one the macro is on.
    Ahh, sweet. That will do it. Thanks!

  12. #5272
    While we're on the subject of Holy Priest macros, I'm looking for one that will cast the appropriate Holy Word spell depending on which chakra I'm in. I had a macro like this but it apparently no longer works.

    #showtooltip
    /cast [target=mouseover,exists,nodead] Holy Word: Serenity; Holy Word: Sanctuary

    That's the maco I used to use.


    Anything can be harmful when taken to an extreme. Even moderation.

  13. #5273
    Deleted
    Quote Originally Posted by Meaux View Post
    While we're on the subject of Holy Priest macros, I'm looking for one that will cast the appropriate Holy Word spell depending on which chakra I'm in. I had a macro like this but it apparently no longer works.

    #showtooltip
    /cast [target=mouseover,exists,nodead] Holy Word: Serenity; Holy Word: Sanctuary

    That's the maco I used to use.
    Put in "Holy Word: Chastise" and it'll automatically use whatever spell is currently replacing it, if any:

    Code:
    #showtooltip
    /use [@mouseover,exists,nodead][]Holy Word: Chastise

  14. #5274
    Hey guys!

    Ive another question regarding a macro:

    Code:
    #showtooltip
    /cast [mod:shift]Mocking Banner;[@mouseover,harm]Taunt;Taunt
    I want to add that when i use the ctrl modifier, it intervenes to my Mocking Banner.

    Any help is greatly appreciated!

  15. #5275
    Deleted
    Quote Originally Posted by Shaktard View Post
    Hey guys!

    Ive another question regarding a macro:

    Code:
    #showtooltip
    /cast [mod:shift]Mocking Banner;[@mouseover,harm]Taunt;Taunt
    I want to add that when i use the ctrl modifier, it intervenes to my Mocking Banner.

    Any help is greatly appreciated!

    Code:
    #showtooltip
    /target [mod:ctrl] Mocking Banner
    /cast [mod:ctrl] Intervene
    /targetlasttarget [mod:ctrl]
    /stopmacro [mod:ctrl]
    /cast [mod:shift]Mocking Banner;[@mouseover,harm][]Taunt
    Untested, but should work. Note that I changed the last part before the Taunt also, same functionality with less characters.

  16. #5276
    Seems to work.. thanks man!

  17. #5277
    I'm trying to get my one button filler macro to work as a Demo lock and can't figure it out. It used to be.

    #showtooltip
    /cast [nostance] drain life
    /cast [stance:1] touch of chaos

    Does someone know how to get this to work? Drain life works fine but touch of chaos does not. It worked fine in MOP but not now. HELP!!!

  18. #5278
    can someone help me just came back to wow since cata had a warrior sequence macro that use to work but doesn't work now.

    #showtooltip
    /castsequence reset=30 heroic leap, charge, charge

    my problem is the macro does heroic leap but it doesn't go on to the charge. it just stays on leap

    p.s. im an idiot haven't played wow in years but i can't enjoy the class unless i can find a way for this macro to work. thanks
    Quote Originally Posted by adam86shadow View Post
    I hear people say bring War back to World of Warcraft, well how about bringing World back to World of Warcraft

  19. #5279
    Hello. Need help with my sacrifice macros.

    When speccing 'Clemency' talent (gives x2 hand spells) to prevent using Sacrifice twice.

    Using atm:
    Code:
    #showtooltip
    /use [#mouseover,help,nodead][#party1,nodead][]Hand of Sacrifice
    I found:
    Code:
    #showtooltip Hand of Sacrifice
    /castsequence reset=2 Hand of Sacrifice, Turn Evil
    I tried:
    Code:
    #showtooltip
    /castsequence reset=2 [#mouseover,help,nodead][#party2,nodead][]Hand of Sacrifice, Turn Evil
    ^Not working.


    Need my old (non clemency talent) macro to work with castsequence,

    Not possible to include target/mouseover parameters with castsequence?

    EDIT think i fixed it:
    Code:
    /castsequence [#mouseover,help,nodead][#party2,nodead][]reset=2 Hand of Sacrifice, Turn Evil
    Last edited by Rebark90; 2014-11-27 at 12:10 PM.

  20. #5280
    The Lightbringer Keosen's Avatar
    10+ Year Old Account
    Join Date
    Oct 2009
    Location
    Sin City
    Posts
    3,709
    Is it possible to have a mind blast/mind spike macro that will cast MB if is off cd and Mind Spiike when it's on cd?

Posting Permissions

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