
Originally Posted by
Tearor
Your suggestion should work, you can save some characters by using []:
#showtooltip
/cast [@focus,mod:shift]Devouring Plague;[@mouseover,mod:ctrl,help]Flash Heal;[@mouseover,mod:ctrl,harm][]Devouring Plague
To take full advantage
Code:
/cast [@mouseover,mod:ctrl,help]Flash Heal;[@focus,mod:shift][@mouseover,mod:ctrl,harm][]Devouring Plague

Originally Posted by
Sinn
would this do the trick for the 3 specs?
#showtooltip [spec:1/2]Binding Heal;Shadow Word: Pain
/cast [@focus,mod:shift]Shadow Word: Pain;[@mouseover,mod:ctrl,help]Binding Heal;[@mouseover,mod:ctrl,harm]Shadow Word: Pain;[spec:3]Shadow Word: Pain;[@mouseover]Binding Heal
And this:
#showtooltip [spec:1/2]Smite;Shadow Word: Death
/cast [@focus,mod:shift]Shadow Word: Death;[@mouseover,mod:ctrl,harm,spec:3]Shadow Word: Death;[@target,mod:ctrl,harm,spec:1/2]Holy Fire;[spec:3]Shadow Word: Death;Smite
Thank you for your time.
spec is considered as your 2 specs you can have (dual spec) and is not related to any spec you can choose of (3).
I'm a bit confused about your first spec macro, you want to cast Shadow Word: Pain on your target if you are shadow, but as heal you don't have any spell to be cast on your target? Please tell me if it is your intention or describe what you really want, thank you
But for the second:
Code:
#showtooltip [spec:2]Shadow Word: Death; Smite
/cast [@focus,mod:shift][@mouseover,mod:ctrl,harm,spec:2][spec:2]Shadow Word: Death;[mod:ctrl,harm]Holy Fire; Smite
Change spec:2 to spec:1 if your shadow spec is your fist spec.
What it does (I took the information from your macro, if it should do something else, feel free to describe it): If in spec 2 (shadow) cast Shadow Word: Death on mouseover enemy if mod:ctrl else on your target, else with ctrl holy fire on enemy target smite. And with shift it will cast SW
on focus (in both specs)
Why do you want to show Smite if you are not in shadow spec? wouldn't Holy Fire be better? You could leave the showtooltip unspecified and it will always show the spell that you would currently cast (#showtooltip)

Originally Posted by
Falled09
I am looking for an all in 1 Intervene/Safeguard macro.
What I have is:
#showtooltip Intervene
/cast [nomod,@Lexisbery] Intervene
/cast [mod:shift,@Mocking Banner] Intervene
/cast [mod:alt,@Demoralizing Banner] Intervene
Considering that it is not working for mocking/demoralizing I can only assume I did something wrong or typed it wrong. I would like to keep it with the shift/alt mods. Would definitely appreciate some help.
For the Banners you have to target them, cast intervene and target your last target
Code:
#showtooltip Intervene
/cast [nomod,@Lexisbery] Intervene
/target [mod:Shift] Mocking Banner; [mod:Alt] Demoralizing Banner
/cast [mod:Shift/Alt] Intervene
/targetlasttarget [mod:Shift/Alt]
If you don't care about Ctrl as modifier you can replace [mod:Shift/Alt] with [mod] (with only [mod] it would cast Intervene and target your last target if you hold ctrl down)
or (same with ctrl, just replace [nomod] with [nomod:Shift/Alt] if you don't want to cast and target last target with ctrl down)
Code:
#showtooltip Intervene
/cast [nomod,@Lexisbery] Intervene
/stopmacro [nomod]
/target [mod:Shift] Mocking Banner; [mod:Alt] Demoralizing Banner
/cast Intervene
/targetlasttarget
Both macros should work, take whichever you want.