macro help for spirit beast heal?

Anything related to Hunter pets.
Forum rules
Treat others with respect. Report, don't respond. Read the complete forum rules.
User avatar
Isaba
Journeyman Hunter
Journeyman Hunter
Posts: 154
Joined: Thu Apr 01, 2010 7:31 pm
Realm: Alleria~Nesingwary
Gender: male

macro help for spirit beast heal?

Unread post by Isaba »

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 >>

*GenderQueer*Gay*Furry*Hunter*
I am who I am, and I am Happy.

User avatar
Wajjldkaat
Apprentice Hunter
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?

Unread post by Wajjldkaat »

just like this? =P

/target Isaba
/cast Spirit Mend
/targetlasttarget

:o
User avatar
Mockingbird
Expert Hunter
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?

Unread post by Mockingbird »

#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
User avatar
Wajjldkaat
Apprentice Hunter
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?

Unread post by Wajjldkaat »

I'm gonna use your last macro Mockingbird !
Really nice, thanks ! =))
theeb
Posts: 1
Joined: Sat Dec 04, 2010 2:33 am
Realm: Hellscream

Re: macro help for spirit beast heal?

Unread post by theeb »

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.
User avatar
Kurasu
 Community Resource
 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?

Unread post by Kurasu »

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!
User avatar
Griffley
Journeyman Hunter
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?

Unread post by Griffley »

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.
NRS
Posts: 14
Joined: Sat Oct 23, 2010 12:05 pm
Realm: Mug'thol
Gender: Male
Contact:

Re: macro help for spirit beast heal?

Unread post by NRS »

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.
Image
JayCanuck
Posts: 23
Joined: Tue Aug 24, 2010 3:43 pm

Re: macro help for spirit beast heal?

Unread post by JayCanuck »

This is my combo macro that I find very useful:

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
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
Last edited by JayCanuck on Sat Dec 04, 2010 12:21 pm, edited 1 time in total.
Tsaikojen
Journeyman Hunter
Journeyman Hunter
Posts: 166
Joined: Mon Jan 11, 2010 4:48 pm
Realm: Argent Dawn

Re: macro help for spirit beast heal?

Unread post by Tsaikojen »

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.

Image

NRS
Posts: 14
Joined: Sat Oct 23, 2010 12:05 pm
Realm: Mug'thol
Gender: Male
Contact:

Re: macro help for spirit beast heal?

Unread post by NRS »

Tsaikogen wrote:(may need [target=mouseover], not sure ATM)
It does. Also, you can change the "target=" part to just "@".
Image
Tsaikojen
Journeyman Hunter
Journeyman Hunter
Posts: 166
Joined: Mon Jan 11, 2010 4:48 pm
Realm: Argent Dawn

Re: macro help for spirit beast heal?

Unread post by Tsaikojen »

NRS wrote:
Tsaikogen wrote:(may need [target=mouseover], not sure ATM)
It does. Also, you can change the "target=" part to just "@".
Neat. You just made my longer macro's more functional. :headbang:

Image

User avatar
Cialbi
Grand Master Hunter
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?

Unread post by Cialbi »

JayCanuck wrote:This is my combo macro that I find very useful:

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
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
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:

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
Thanks for posting this :D
AKA Nazthandol, in <Petopians> (US)

Image
Cute doesn't need an explanation.
_____

Avatar by LupisDarkmoon, and image caption by Kurasu. Thanks!

kn0wit
Posts: 1
Joined: Mon May 14, 2012 5:21 pm
Realm: Barthilas
Gender: Male

Re: macro help for spirit beast heal?

Unread post by kn0wit »

Some Dodgy Macro skills here. I think the following might be more reliable.

Code: Select all

#showtooltip
/cast [@player,nopet:Spirit Beast][@player,mod]Heavy Embersilk Bandage;[@mouseover,help][@target,help][@player]Spirit Mend
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.
Cialbi wrote:
JayCanuck wrote:This is my combo macro that I find very useful:

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
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
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:

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
Thanks for posting this :D
Post Reply