macro help for spirit beast heal?
Forum rules
Treat others with respect. Report, don't respond. Read the complete forum rules.
Treat others with respect. Report, don't respond. Read the complete forum rules.
- Isaba
- Journeyman Hunter
- Posts: 154
- Joined: Thu Apr 01, 2010 7:31 pm
- Realm: Alleria~Nesingwary
- Gender: male
macro help for spirit beast heal?
so uh... I suck at macros
I'm trying to make one that will cast my spirit beasties heal onto myself
any suggestions ?
wasnt sure where else to post this >>
I'm trying to make one that will cast my spirit beasties heal onto myself
any suggestions ?
wasnt sure where else to post this >>
*GenderQueer*Gay*Furry*Hunter*
I am who I am, and I am Happy.
- Wajjldkaat
- Apprentice Hunter
- Posts: 72
- Joined: Thu Nov 04, 2010 10:55 pm
- Realm: Ragnaros
- Gender: Female playing female chars
- Location: Sweden =)
- Contact:
Re: macro help for spirit beast heal?
just like this? =P
/target Isaba
/cast Spirit Mend
/targetlasttarget

/target Isaba
/cast Spirit Mend
/targetlasttarget

- Mockingbird
- Expert Hunter
- Posts: 284
- Joined: Fri Jun 18, 2010 1:06 pm
- Realm: Azjol-Nerub (EU)
- Gender: Male
- Location: Oxfordshire, UK
Re: macro help for spirit beast heal?
#showtooltip
/cast [@player]Spirit Mend
will cast it on you.
To have a button that casts it on you by default, and on your pet if you hold "ctrl" and click it:
#showtooltip
/cast [mod:ctrl, @pet][@player]Spirit Mend
/cast [@player]Spirit Mend
will cast it on you.
To have a button that casts it on you by default, and on your pet if you hold "ctrl" and click it:
#showtooltip
/cast [mod:ctrl, @pet][@player]Spirit Mend
Random Pet Generator:
https://spreadsheets.google.com/ccc?key ... y=CLXP-r4N
https://spreadsheets.google.com/ccc?key ... y=CLXP-r4N
- Wajjldkaat
- Apprentice Hunter
- Posts: 72
- Joined: Thu Nov 04, 2010 10:55 pm
- Realm: Ragnaros
- Gender: Female playing female chars
- Location: Sweden =)
- Contact:
Re: macro help for spirit beast heal?
I'm gonna use your last macro Mockingbird !
Really nice, thanks ! =))
Really nice, thanks ! =))
Re: macro help for spirit beast heal?
I updated the macro a bit to let you left, right and middle click the macro for different heals.
#showtooltip Spirit Mend
/cast [button:3, @focus] Spirit Mend; [button:2, @pet] Spirit Mend; /[@player] Spirit Mend
Left click will heal you.
Right click will heal spirit beast
Middle click will heal your focus
Seems to work ok for me.
#showtooltip Spirit Mend
/cast [button:3, @focus] Spirit Mend; [button:2, @pet] Spirit Mend; /[@player] Spirit Mend
Left click will heal you.
Right click will heal spirit beast
Middle click will heal your focus
Seems to work ok for me.
- Kurasu
- Community Resource
- Posts: 2539
- Joined: Fri Oct 01, 2010 8:38 am
- Realm: Emerald Dreams (EU)
- Gender: Male with both gender toons
- Location: Ontario, Canada, but my heart (and account) is in Europe!
Re: macro help for spirit beast heal?
Oooo, thanks! I was doing this with the 'focus' and with the /target macro. I think I'll use the button version, though, because I'd like to have it for raid healing now and again.
Come see Kurasu's stables!
- Griffley
- Journeyman Hunter
- Posts: 247
- Joined: Fri Nov 19, 2010 8:11 am
- Realm: Outland - EU
- Gender: Male
- Location: Eindhoven - Netherlands
Re: macro help for spirit beast heal?
Just a little tip:
typing /use instead of /cast will work as well,
and /tar instead of /target
if you are planning on making a really long macro, this difference may just allow you some extra lines.
typing /use instead of /cast will work as well,
and /tar instead of /target
if you are planning on making a really long macro, this difference may just allow you some extra lines.
Re: macro help for spirit beast heal?
If you are using your spirit beast during a raid, you can help out with tank healing by keeping the tank as your focus target and putting "/cast [@focus] Spirit Mend" somewhere in one of your shot macros so it always goes off.
Re: macro help for spirit beast heal?
This is my combo macro that I find very useful:
Looks more complicated than it is.
Basically, if you don't have a spirit beast out, it acts like a standard bandage macro; using a Heavy Frostweave Bandage on myself.
If I do have a spirit beast out, the macro is a bit more intelligent. By default, it will cast Spirit Mend. If your target is friendly (like a party member, or the pet itself), it will cast Spirit Mend on them. If you have no target, or an enemy targeted, it will cast Spirit Mend on yourself. And better yet, you just need to press a modifier (shift, ctrl, or alt) and it'll switch back to doing a basic bandage on yourself.

And if you wanted to go really fancy, you could add a [@focus, help] to the macro before "[help]" and it'll add priority support for any friendly focused creatures/players
Code: Select all
#showtooltip [nopet:spirit beast, @player][mod, @player] Heavy Frostweave Bandage; [@player] Spirit Mend
/cast [nopet:spirit beast, @player][mod, @player] Heavy Frostweave Bandage; [help][@player] Spirit Mend
Basically, if you don't have a spirit beast out, it acts like a standard bandage macro; using a Heavy Frostweave Bandage on myself.
If I do have a spirit beast out, the macro is a bit more intelligent. By default, it will cast Spirit Mend. If your target is friendly (like a party member, or the pet itself), it will cast Spirit Mend on them. If you have no target, or an enemy targeted, it will cast Spirit Mend on yourself. And better yet, you just need to press a modifier (shift, ctrl, or alt) and it'll switch back to doing a basic bandage on yourself.

And if you wanted to go really fancy, you could add a [@focus, help] to the macro before "[help]" and it'll add priority support for any friendly focused creatures/players
Last edited by JayCanuck on Sat Dec 04, 2010 12:21 pm, edited 1 time in total.
Re: macro help for spirit beast heal?
If your like me and have a healer mod for another character you could set up a mouseover heal version of Spirit Mend.
/cast target=mouseover Spirit Mend
(may need [target=mouseover], not sure ATM)
Anyway, plug this into something like Healbot and you could just click your HB healthbar for fast access that won't dissrupt the flow of your pets attack.
/cast target=mouseover Spirit Mend
(may need [target=mouseover], not sure ATM)
Anyway, plug this into something like Healbot and you could just click your HB healthbar for fast access that won't dissrupt the flow of your pets attack.
Re: macro help for spirit beast heal?
It does. Also, you can change the "target=" part to just "@".Tsaikogen wrote:(may need [target=mouseover], not sure ATM)
Re: macro help for spirit beast heal?
Neat. You just made my longer macro's more functional.NRS wrote:It does. Also, you can change the "target=" part to just "@".Tsaikogen wrote:(may need [target=mouseover], not sure ATM)

- Cialbi
- Grand Master Hunter
- Posts: 2085
- Joined: Tue Nov 23, 2010 7:52 pm
- Realm: Cenarion Circle (US-Alliance)
- Gender: Male
- Location: Redmond, WA
Re: macro help for spirit beast heal?
Ah, very nice! I think I'll trim out some unnecessary spaces (I'm not sure what exactly is necessary in this regard - the main concern is including spaces in spell names), and use this:JayCanuck wrote:This is my combo macro that I find very useful:
Looks more complicated than it is.Code: Select all
#showtooltip [nopet:spirit beast, @player][mod, @player] Heavy Frostweave Bandage; [@player] Spirit Mend /cast [nopet:spirit beast, @player][mod, @player] Heavy Frostweave Bandage; [help][@player] Spirit Mend
Basically, if you don't have a spirit beast out, it acts like a standard bandage macro; using a Heavy Frostweave Bandage on myself.
If I do have a spirit beast out, the macro is a bit more intelligent. By default, it will cast Spirit Mend. If your target is friendly (like a party member, or the pet itself), it will cast Spirit Mend on them. If you have no target, or an enemy targeted, it will cast Spirit Mend on yourself. And better yet, you just need to press a modifier (shift, ctrl, or alt) and it'll switch back to doing a basic bandage on yourself.
And if you wanted to go really fancy, you could add a [@focus, help] to the macro before "[help]" and it'll add priority support for any friendly focused creatures/players
Code: Select all
#showtooltip [nopet:spirit beast,@player][mod,@player] Heavy Frostweave Bandage; [@player] Spirit Mend
/cast [nopet:spirit beast,@player][mod,@player] Heavy Frostweave Bandage; [help][@player] Spirit Mend

AKA Nazthandol, in <Petopians> (US)
Cute doesn't need an explanation.
_____
Avatar by LupisDarkmoon, and image caption by Kurasu. Thanks!
Re: macro help for spirit beast heal?
Some Dodgy Macro skills here. I think the following might be more reliable.
This will cast Bandage on yourself if you don't have a Spirit Beast or you push ctrl,shift, or alt.
It will cast Spirit Mend on targets in the following priority;
MouseOver Target (if Friendly)
Your target (if Friendly)
Yourself
Hope this helps someone.
Code: Select all
#showtooltip
/cast [@player,nopet:Spirit Beast][@player,mod]Heavy Embersilk Bandage;[@mouseover,help][@target,help][@player]Spirit Mend
It will cast Spirit Mend on targets in the following priority;
MouseOver Target (if Friendly)
Your target (if Friendly)
Yourself
Hope this helps someone.
Cialbi wrote:Ah, very nice! I think I'll trim out some unnecessary spaces (I'm not sure what exactly is necessary in this regard - the main concern is including spaces in spell names), and use this:JayCanuck wrote:This is my combo macro that I find very useful:
Looks more complicated than it is.Code: Select all
#showtooltip [nopet:spirit beast, @player][mod, @player] Heavy Frostweave Bandage; [@player] Spirit Mend /cast [nopet:spirit beast, @player][mod, @player] Heavy Frostweave Bandage; [help][@player] Spirit Mend
Basically, if you don't have a spirit beast out, it acts like a standard bandage macro; using a Heavy Frostweave Bandage on myself.
If I do have a spirit beast out, the macro is a bit more intelligent. By default, it will cast Spirit Mend. If your target is friendly (like a party member, or the pet itself), it will cast Spirit Mend on them. If you have no target, or an enemy targeted, it will cast Spirit Mend on yourself. And better yet, you just need to press a modifier (shift, ctrl, or alt) and it'll switch back to doing a basic bandage on yourself.
And if you wanted to go really fancy, you could add a [@focus, help] to the macro before "[help]" and it'll add priority support for any friendly focused creatures/playersThanks for posting thisCode: Select all
#showtooltip [nopet:spirit beast,@player][mod,@player] Heavy Frostweave Bandage; [@player] Spirit Mend /cast [nopet:spirit beast,@player][mod,@player] Heavy Frostweave Bandage; [help][@player] Spirit Mend