[PvE] Macro Help - World of Warcraft (2024)


azinator
CS is the DEVIL
Premium Member
join:2000-08-12
Texarkana, TX

warcraft Azthehealer

[PvE] Macro Help - World of Warcraft (2)

azinator

Premium Member

2012-Sep-20 11:26 am

[PvE] Macro Help

I'm trying to setup a macro for my Disc Priest.....I have done them before for my Ret Pally but this one seems to elude me. I have the Glyph of Holy Fire to make it instant cast. So, this is what i was trying to do. Click my target then have a macro button to cast Holy Fire, Shadow Word: Pain and Shadowfiend. Here is the macro I created:

/cast Holy Fire
/cast Shadow Word: Pain
/cast Shadowfiend

My problem is that it only casts the first spell....no matter what order i have it in. Maybe someone here can shed some light as to what i am doing wrong. The macro I made for my ret pally has the same setup and works just fine, which is why i'm confused about why the above macro isn't working.

Thanks!

· actions · 2012-Sep-20 11:26 am ·

cymraeg
Thread Killer
Premium Member
join:2011-06-07
Dodge, NE

warcraft Myrthynn

cymraeg

Premium Member

2012-Sep-20 11:32 am

you need to put in time breaks for the global that youre incuring

· actions · 2012-Sep-20 11:32 am ·


McBrain
BRB Face Melting
join:2010-05-06
Marietta, GA

2 edits

[PvE] Macro Help - World of Warcraft (4)

McBrain to azinator

Member

2012-Sep-20 11:46 am

to azinator

#showtooltip Holy Fire
/console Sound_EnableSFX 0
/castsequence reset=combat/target/10 Holy Fire, Shadow Word: Pain, Shadowfiend
/console Sound_EnableSFX 1
/run UIErrorsFrame:Clear()

That should work, just hit the macro button 3 times in order for it to cycle through the cast sequence. reset=combat/target/10 means that the sequence will reset if you dont cast the macro after 10 seconds, and/or if you leave combat. The /console and /run portions should get rid of error sounds and messages on your ui from spamming the macro when fiend is on CD.

Let me know if it doesn't work and I'll tweak it for you.

· actions · 2012-Sep-20 11:46 am ·


azinator
CS is the DEVIL
Premium Member
join:2000-08-12
Texarkana, TX

warcraft Azthehealer

[PvE] Macro Help - World of Warcraft (6)

azinator

Premium Member

2012-Sep-20 11:49 am

Thank You, will give it a try tonight.

· actions · 2012-Sep-20 11:49 am ·


bTU
join:2009-04-22
Aurora, CO

[PvE] Macro Help - World of Warcraft (8)

bTU to azinator

Member

2012-Sep-20 12:45 pm

to azinator

One of these days I should start using macros. But I need a WoW macros for dummies book or website. Most of the ones I have seen just say "make a macro that casts x, y, z in order to maximize DPS/HPS" and then doesn't say how to make that sequence work.

· actions · 2012-Sep-20 12:45 pm ·

Vinceruos_t
join:2012-05-04

Vinceruos_t

Member

2012-Sep-20 12:48 pm

Arena junkies has a lot of macros that you can just copy and paste into wow that work perfectly. Once you copy a few and learn how they work then you can start to edit them how you see fit.

· actions · 2012-Sep-20 12:48 pm ·


McBrain
BRB Face Melting
join:2010-05-06
Marietta, GA

[PvE] Macro Help - World of Warcraft (10)

McBrain to bTU

Member

2012-Sep-20 12:48 pm

to bTU

Here is a pretty good site (for priests specifically) that has some good macros written out. Look around in the macro forum and you will find some good explanations about the macros themselves.

»howtopriest.com/viewforu ··· php?f=18

· actions · 2012-Sep-20 12:48 pm ·


Nick D
Premium Member
join:2010-02-04
Orange, CA

[PvE] Macro Help - World of Warcraft (12)

Nick D to McBrain

Premium Member

2012-Sep-20 1:00 pm

to McBrain

Going to piggyback off Brain's post to explain why his would work and azinator's original doesn't. Cym alludes to this, but I think its worth making more explicit.

Note: I am not a macro expert, and I often forget/don't know specifics. But they aren't conceptually complicated. People just think they're magic.

Macros are just slash commands you can keybind. You could type "/cast Holy Fire" into your text box and it would cast a spell. This knowledge comes in handy when you want to bind /love so you can love all the squirrels.

You have multiple cast commands in sequence, like azinator's original example.

HOWEVER, this is the big gotcha: multiple commands in sequence can never do something that individual keybinds would not let you do.

That means anything that triggers a GCD (which is 90% of spells in the game) cannot be set up as a bunch of cast commands in a row. The macro will stop as soon as a GCD is hit. If you wanted to have a trinket + spell macro, you need to put trinkets before the spell that incurs the GCD.

McBrain's castsequence version just updates the spell the button will cast after the GCD is met. This is fine, because you have to hit the button each time. So each time the macro executes the whole thing once, the castsequence will update the spell to SW:P or Fiend, and do its SFX/UIErrorsFrame clear (which mostly gets rid of the "ability not ready yet" noises and text).

Another note: probably want to remove the Holy Fire line from #showtooltip, so that the tooltip actually updates to SW:P and Fiend when that sequence is up. As written, it will always show the Holy Fire icon.

· actions · 2012-Sep-20 1:00 pm ·


mettachain
Goblineer
join:2011-09-27
Azeroth

[PvE] Macro Help - World of Warcraft (14)

mettachain to azinator

Member

2012-Sep-20 1:02 pm

to azinator

Cast sequence macros are for turds...

· actions · 2012-Sep-20 1:02 pm ·


McBrain
BRB Face Melting
join:2010-05-06
Marietta, GA

1 edit

[PvE] Macro Help - World of Warcraft (16)

McBrain

Member

2012-Sep-20 1:08 pm

Or people with disabilities.

There's a huge argument going on at howtopriest.com about cast sequence macros...I used one on my Shadow Priest forever, it just makes sh*t easy. Could I do things better if I casted each spell myself? Probably...but I get about 97% performance from the macro, while allowing me to pay more attention to the bad sh*t on the floor, or other encounter mechanics. I don't use it all the time, I hard cast in AoE situations and during certain phases of certain encounters. But I wouldn't have loved my priest the way I did without the macro I used.

· actions · 2012-Sep-20 1:08 pm ·


mettachain
Goblineer
join:2011-09-27
Azeroth

[PvE] Macro Help - World of Warcraft (18)

mettachain

Member

2012-Sep-20 1:10 pm

said by mettachain:

Cast sequence macros are for turds...

· actions · 2012-Sep-20 1:10 pm ·


Immer
Gentleman
Premium Member
join:2010-01-07
Evans, GA

warcraft Immerweise

[PvE] Macro Help - World of Warcraft (20)

Immer to azinator

Premium Member

2012-Sep-20 1:27 pm

to azinator

Only slightly related, Patch 5.0.4 broke my wife's focus assist macros on her hunter. I didn't see anything in the patch notes, but the shortcut

/cast [@focustarget, nodead, harm][target] Judgement 

stopped working. I had to revert her macros back to the old-school

/cast [target=focustarget, nodead, harm][target] Judgement 

I think I also had to change my smite and holy fire macros to get rid of the "@mouseover" shortcut.

· actions · 2012-Sep-20 1:27 pm ·

cymraeg
Thread Killer
Premium Member
join:2011-06-07
Dodge, NE

warcraft Myrthynn

cymraeg

Premium Member

2012-Sep-20 1:30 pm

immer just take the nodead bit out, my mouseover macros were a bit stuck till i did that now for like Penance i just use

/cast [@mouseover,help,harm] Penance

· actions · 2012-Sep-20 1:30 pm ·


Cake09
Premium Member
join:2009-09-29
united state

[PvE] Macro Help - World of Warcraft (22)

Cake09 to azinator

Premium Member

2012-Sep-20 4:06 pm

to azinator

2 more cents on macros

For issues with PW:S if you attempt to cast too early (and binding heal if you mouseover wrong target when casting), I found that adding a /use 1 line works. If you are not familiar with it, it would turn your cursor blue and you would be unable to cast anything until you canceled it.

#showtooltip
/cast [@mouseover] spell
/use 1

The PW:S issue came up after the last patch. It was very annoying, I spin the mousewheel to cast it between chain CCs and it caused un needed deaths before I looked up a fix.

· actions · 2012-Sep-20 4:06 pm ·


Immer
Gentleman
Premium Member
join:2010-01-07
Evans, GA

warcraft Immerweise

[PvE] Macro Help - World of Warcraft (24)

Immer to cymraeg

Premium Member

2012-Sep-20 4:10 pm

to cymraeg

Interesting... I hadn't tried that.

however, I am not sure I want to eliminate the nodead argument (weird that it would break only the @ shortcut). Because I use order of operations, I want the spell to fire when I hit the button, the macro is just helping prioritize the target... if the tank (or dps) hasn't switched targets yet when I'm firing the spell, I want the next target to fire... i don't want "Not a Valid Target", or "Target is Dead".

· actions · 2012-Sep-20 4:10 pm ·


azinator
CS is the DEVIL
Premium Member
join:2000-08-12
Texarkana, TX

warcraft Azthehealer

[PvE] Macro Help - World of Warcraft (26)

azinator to McBrain

Premium Member

2012-Sep-20 5:17 pm

to McBrain

McBrain, I do have 1 question, why does my original macro not work? I have the same /cast setup on the ret pally with 4 or 5 instant cast spells and they fire off just fine?

· actions · 2012-Sep-20 5:17 pm ·


Immer
Gentleman
Premium Member
join:2010-01-07
Evans, GA

warcraft Immerweise

[PvE] Macro Help - World of Warcraft (28)

Immer

Premium Member

2012-Sep-20 5:20 pm

because the ret pally abilities have cooldowns longer than the GCD. DoTs only suffer from the GCD, so setting them up without the cast sequence will force you to spam the button, but it will just keep applying the first dot.

your approach only works if the first ability is still on cooldown when you hit the button for the last ability.

· actions · 2012-Sep-20 5:20 pm ·


Nick D
Premium Member
join:2010-02-04
Orange, CA

[PvE] Macro Help - World of Warcraft (30)

Nick D to azinator

Premium Member

2012-Sep-20 6:16 pm

to azinator

There are instant spells that kick off a GCD and instant spells that do not. Using +DPS CDs do not incur a GCD, and actual spells that do damage kicks off the GCD.

So if your pally macro is a bunch of non-GCD stuff (Avenging Wrath, GotAK, ... I can't think of anything else ...) followed by one GCD spell, it works great.

Otherwise, what immer said.

· actions · 2012-Sep-20 6:16 pm ·

cymraeg
Thread Killer
Premium Member
join:2011-06-07
Dodge, NE

warcraft Myrthynn

cymraeg to azinator

Premium Member

2012-Sep-20 8:00 pm

to azinator

you original macro would need time resets for the global, in doing that you would basically be waiting the global before it casted the next spell so yes you could make them all cast on their own but, it would still take the time for the global it would be a good macro for moving, but if youre standing still just use Macs macro.

as an example it would look like this

/cast [reset=1.3] holy fire
/cast [reset=1.3] shadow word:pain
/cast shadowfiend
/cast shadowcrawl
/petattack

something to that affect i havent used a time reset in a very long time

· actions · 2012-Sep-20 8:00 pm ·


McBrain
BRB Face Melting
join:2010-05-06
Marietta, GA

1 edit

[PvE] Macro Help - World of Warcraft (32)

McBrain

Member

2012-Sep-21 7:57 am

I'm pretty sure shadowcrawl is autocast by the fiend now...I could be wrong though. Not that it really matters because that particular macro isn't close to the 255 character limit.

I rewrote my sPriest macro when 5.0.4 came out because Squinky isn't around to make them for us anymore...I came up with this, and it works really, really well. So well, that I honestly believe the macro reaches 99.9% of my toon's dps potential in a patchwerk style fight. The key with cast sequence macros is that you have to understand when the ideal time to use the macro is and when you should be hard casting in order to achieve the best dps. Macros aren't for everyone, and they definitely aren't for every situation. But I believe that there is a certain demographic that benefits from them being around, i.e. players with handicaps, raid leaders, etc. I think macro users are a lot like people who are clickers...there's a stigma around them and people like to put them down, until they meet a clicker like Ghastlyone that completely dominates them on the meters. Like I said, I've used a cast sequence macro for a long time on my Priest, and I am hard-pressed to find another sPriest with equal gear that can outperform me.

/castsequence [nochanneling] reset=target/4 Shadow Word: Pain,Vampiric Touch,Mind Blast,Mind Flay,Mind Flay,Mind Flay,Mind Blast,Shadow Word: Pain,Vampiric Touch,Mind Flay,Mind Flay,Mind Blast,Devouring Plague,Mind Flay/cast Shadowfiend/use item:7634 

What I learned from this is that you don't need spaces after the commas separating your spells, [nochanneling] causes Mind Flay not to be interrupted by another spell when you're spamming your macro, and /use item: 7634 is shorthand for /use Gloves of Dying Light (Engineer Tinker). The best thing I think I learned while trying to write a good cast sequence macro is that the macros themselves are more flexible than we think. The macro listed above is 253 characters and can be used in the default macro interface. Which is awesome because most cast sequence macros require a macro extender add-on.

· actions · 2012-Sep-21 7:57 am ·


azinator
CS is the DEVIL
Premium Member
join:2000-08-12
Texarkana, TX

warcraft Azthehealer

[PvE] Macro Help - World of Warcraft (34)

azinator

Premium Member

2012-Sep-21 9:40 am

i used a macro for my spriest as well until 5.0.4 came out.....haven't since.....might try yours and see how i do [PvE] Macro Help - World of Warcraft (35)

· actions · 2012-Sep-21 9:40 am ·


McBrain
BRB Face Melting
join:2010-05-06
Marietta, GA

[PvE] Macro Help - World of Warcraft (37)

McBrain

Member

2012-Sep-21 10:23 am

My ilvl is 399 and I pull ~33k on the target dummy self-buffed, using a From Darkness Comes Light/Twist of Fate build. The key is to cast your free/insta-cast Mind Spikes when you are channeling Mind Flay so you don't throw the macro out of whack.

· actions · 2012-Sep-21 10:23 am ·


Immer
Gentleman
Premium Member
join:2010-01-07
Evans, GA

warcraft Immerweise

[PvE] Macro Help - World of Warcraft (39)

Immer

Premium Member

2012-Sep-21 10:30 am

that's awesome advice. my priest is dual healer, but I still love the advice.

· actions · 2012-Sep-21 10:30 am ·


azinator
CS is the DEVIL
Premium Member
join:2000-08-12
Texarkana, TX

warcraft Azthehealer

[PvE] Macro Help - World of Warcraft (41)

azinator to McBrain

Premium Member

2012-Sep-21 10:31 am

to McBrain

and i had no problems with the new macro last night [PvE] Macro Help - World of Warcraft (42) I use them cause i'm just a lazy ass [PvE] Macro Help - World of Warcraft (43)

· actions · 2012-Sep-21 10:31 am ·


McBrain
BRB Face Melting
join:2010-05-06
Marietta, GA

[PvE] Macro Help - World of Warcraft (45)

McBrain

Member

2012-Sep-21 10:32 am

I'm lazy too, but for me it helps more with raid awareness and dealing with other distractions like wife aggro or 19 month old add phases.

If I can spam my macro for a minute or two, it frees my mind to deal with fight mechanics or real life happenings.

· actions · 2012-Sep-21 10:32 am ·


azinator
CS is the DEVIL
Premium Member
join:2000-08-12
Texarkana, TX

warcraft Azthehealer

[PvE] Macro Help - World of Warcraft (47)

azinator

Premium Member

2012-Sep-21 10:37 am

well....there is that too [PvE] Macro Help - World of Warcraft (48)

· actions · 2012-Sep-21 10:37 am ·


Immer
Gentleman
Premium Member
join:2010-01-07
Evans, GA

warcraft Immerweise

[PvE] Macro Help - World of Warcraft (50)

Immer to McBrain

Premium Member

2012-Sep-21 10:38 am

to McBrain

We have a 2yr old and a 10mo old. I wonder if a cast sequence macro might help with her hunter... she does surprisingly well while tending to the infant and playing with one hand...

· actions · 2012-Sep-21 10:38 am ·


azinator
CS is the DEVIL
Premium Member
join:2000-08-12
Texarkana, TX

warcraft Azthehealer

[PvE] Macro Help - World of Warcraft (52)

azinator

Premium Member

2012-Sep-21 10:39 am

luckily, i have no wife, and i don't play until the 4 year old goes to bed!

· actions · 2012-Sep-21 10:39 am ·


Immer
Gentleman
Premium Member
join:2010-01-07
Evans, GA

warcraft Immerweise

[PvE] Macro Help - World of Warcraft (54)

Immer

Premium Member

2012-Sep-21 10:42 am

we don't log on until the kiddos are asleep. However, our little one wakes up at least once during our raid night (10pm est - 12pm est) for mommy.

· actions · 2012-Sep-21 10:42 am ·


Ginjer
Premium Member
join:2009-08-14
Earth

warcraft

[PvE] Macro Help - World of Warcraft (56)

Ginjer

Premium Member

2012-Sep-21 10:53 am

said by Immer:

we don't log on until the kiddos are asleep. However, our little one wakes up at least once during our raid night (10pm est - 12pm est) for mommy.

Story of my life there. By the time both kiddos are down, it is past 8 eastern. At that point I try to wake myself up enough to accomplish something.

· actions · 2012-Sep-21 10:53 am ·

[PvE] Macro Help - World of Warcraft (2024)
Top Articles
Latest Posts
Article information

Author: Golda Nolan II

Last Updated:

Views: 6181

Rating: 4.8 / 5 (78 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Golda Nolan II

Birthday: 1998-05-14

Address: Suite 369 9754 Roberts Pines, West Benitaburgh, NM 69180-7958

Phone: +522993866487

Job: Sales Executive

Hobby: Worldbuilding, Shopping, Quilting, Cooking, Homebrewing, Leather crafting, Pet

Introduction: My name is Golda Nolan II, I am a thoughtful, clever, cute, jolly, brave, powerful, splendid person who loves writing and wants to share my knowledge and understanding with you.