Gnome sequenced Shadowpriest

Hello,

was tinkering around and came up with this general purpose macro (works fine for leveling/questing/grinding)

Sequences['SHADOW'] = {
    PreMacro = [[
/targetenemy [noharm][dead]
/castsequence reset=target Vampiric Touch, Shadow Word: Pain, Vampiric Embrace, null
    ]],
    '/cast [nochanneling] Mind Flay',
    '/cast !Mind Blast',
    '/cast [nochanneling] Shadowfiend',
	'/cast !Shadow Word: Death',
    '/cast !Devouring Plague',
	'/cast !Cascade',
    PostMacro = [[
/use [combat]13
/use [combat]14
    ]],
}

The main dots should still be monitored and reapplied manually

*with such macro, for example:

#showtooltip
/targetenemy [dead][noharm][noexists]
/CASTSEQUENCE Vampiric Touch, Shadow Word: Pain, null

this is what i am using and really like it

Sequences['shadow'] = {
PreMacro = [[
]],
          '/cast Shadow Word: Pain',
          '/cast Vampiric Touch', 
          '/cast [nochanneling] Mind Flay',
          '/cast !Mind Blast',
          '/cast [nochanneling] Shadowfiend',
	  '/cast !Shadow Word: Death',
          '/cast !Devouring Plague',
PostMacro = [[
    ]],
}

I see what you guys are doing, and it’s close. Try this and see what you think.

Sequences[“Shadow”] = {
PreMacro = [[
/targetenemy [noharm][dead]
/cast [noform] !Shadowform
]],
[[/cast Vampiric Embrace]],
[[/castsequence [nochanneling] reset=target Shadow Word: Pain, Vampiric Touch, Mind Flay, Mind Flay, Mind Flay]],
[[/castsequence [nochanneling] reset=target Mind Blast, Mind Blast, Mind Blast, Devouring Plague, Mind Flay, Mind Flay]],
[[/cast [combat,nochanneling] Shadowfiend]],
[[/cast Halo]],
[[/use [combat,nochanneling] 13]],
[[/use [combat,nochanneling] 14]],
[[/cast !Shadow Word: Death]],
PostMacro = [[
]],
}

Matt

your macro dosnt work :frowning:

Jimmy not knocking you but open your eyes and look at things
sometimes when you cut & paste characters change

His macro
Sequences[“Shadow”] = {
PreMacro = [[
/targetenemy [noharm][dead]
/cast [noform] !Shadowform
]],
[[/cast Vampiric Embrace]],
[[/castsequence [nochanneling] reset=target Shadow Word: Pain, Vampiric Touch, Mind Flay, Mind Flay, Mind Flay]],
[[/castsequence [nochanneling] reset=target Mind Blast, Mind Blast, Mind Blast, Devouring Plague, Mind Flay, Mind Flay]],
[[/cast [combat,nochanneling] Shadowfiend]],
[[/cast Halo]],
[[/use [combat,nochanneling] 13]],
[[/use [combat,nochanneling] 14]],
[[/cast !Shadow Word: Death]],
PostMacro = [[
]],
}

And with the correct characters in front & at end of each line
Sequences[“Shadow”] = {
PreMacro = [[
'/targetenemy [noharm][dead]
'/cast [noform] !Shadowform
]],
‘/cast Vampiric Embrace’,
‘/castsequence [nochanneling] reset=target Shadow Word: Pain, Vampiric Touch, Mind Flay, Mind Flay, Mind Flay’,
‘/castsequence [nochanneling] reset=target Mind Blast, Mind Blast, Mind Blast, Devouring Plague, Mind Flay, Mind Flay’,
‘/cast [combat,nochanneling] Shadowfiend’,
'/cast Halo,
‘/use [combat,nochanneling] 13’,
‘/use [combat,nochanneling] 14’,
‘/cast !Shadow Word: Death’,
PostMacro = [[
]],
}

And also sometimes as an example on my elemental shaman if i put this on it will not work so i have to change it to

‘/cast Spiritwalker’s Grace’,
“/cast Spiritwalker’s Grace”,

Hope this clears it up for you happy gaming

It does ty for the help :smiley: danny

anyone have any dps stats on this one?

I played about with both macro’s and came up with this…

Sequences['SPST'] = {
PreMacro = [[
/targetenemy [noharm][dead]
/cast [noform] !Shadowform
]],
	'/castsequence [nochanneling] reset=target Shadow Word: Pain, Vampiric Touch, Mind Flay, Mind Flay, Mind Flay',
    	'/cast !Mind Blast',
    	'/cast [nochanneling] Shadowfiend',
	'/cast !Shadow Word: Death',
    	'/cast !Devouring Plague',
	'/cast !Cascade',
	PostMacro = [[
/use [combat]13
/use [combat]14
]],
}

EDIT

And if you’re questing. This is probably a better macro…

Sequences['SPST2'] = {
PreMacro = [[
/targetenemy [noharm][dead]
/cast [noform] !Shadowform
]],
    	'/cast !Mind Blast',
    	'/cast Mind Spike',
	'/cast !Shadow Word: Death',
    	'/cast !Devouring Plague',
	'/cast !Cascade',
	PostMacro = [[
/use [combat]13
/use [combat]14
]],
}

No clue why, but I can only ever get the last one to turn on shadowform

I’ve tried putting these in the MacroToolKit that the forums to say to use for stuff 5.0 and higher and all these macros are seen as not complete or broken macros. Can someone explain what am doing wrong?

I Extend, Copy Paste and it should be good to go right? Least it was that way with the warrior macro I got from here.

Hi What

Look at Title Gnome Sequencer they are not made for Macro toolkit

[quote quote=18281]Hello,

was tinkering around and came up with this general purpose macro (works fine for leveling/questing/grinding)

Sequences['SHADOW'] = {
    PreMacro = [[
/targetenemy [noharm][dead]
/castsequence reset=target Vampiric Touch, Shadow Word: Pain, Vampiric Embrace, null
    ]],
    '/cast [nochanneling] Mind Flay',
    '/cast !Mind Blast',
    '/cast [nochanneling] Shadowfiend',
	'/cast !Shadow Word: Death',
    '/cast !Devouring Plague',
	'/cast !Cascade',
    PostMacro = [[
/use [combat]13
/use [combat]14
    ]],
}

The main dots should still be monitored and reapplied manually

*with such macro, for example:

#showtooltip
/targetenemy [dead][noharm][noexists]
/CASTSEQUENCE Vampiric Touch, Shadow Word: Pain, null

[/quote]

I’m having great success with the macro … thanks!!! I have the Power Infusion talent. Would you add that to the rotation or hotkey it separately? Or do all of you not use that talent? I also see that PW: Shield isn’t in the rotation … again, I assume because in dungeons it’s rarely needed and when soloing, it should be applied opportunistically, right?