Druid Prowl Macro

So i have a perfect macro on my rogue :
/cast [combat] Vanish; [nostealth] Stealth

I want something similar on my druid i tried many but none of them was perfect so far. What i need is :
if prowl available enter prowl (spamming button should NOT exit prowl/stealth)
if prowl not available enter cat ( from any form)

sounds easy right, too bad somehow all i found weren’t working well enough. So maybe someone has one.

Also leveling my alliance druid, night elf … so would like something like this :
if in combat shadowmelt + next
if not in combat this “next” :
if prowl available enter prowl (spamming button should NOT exit prowl/stealth)
if prowl not available enter cat ( from any form)

The closest I got to what I think you want is:

#showtooltip
/use [combat] Shadowmeld
/use [nocombat] !Prowl; [nostealth, noform:2] Cat Form

This will shadowmeld you in combat, prowl if not in combat and not already active, cat form if not stealthed and not already active. You will need to click the macro twice if you want to drop combat and go into Prowl, I’m assuming that’s because the conditions for Shadowmeld and Prowl are checked at the same time.

1 Like

/use [nocombat] !Prowl; [nostealth, noform:2] Cat Form

it doesnt work if prowl is on cd i dont turn into feral …

Yeah, I’m sorry, didn’t catch that edge case.

#showtooltip
/use [combat] Shadowmeld
/use [nocombat] !Prowl
/use [nostealth, noform:2] Cat Form

if you find any more situations where it doesn’t work let me know :slight_smile:

4 Likes

works perfectly last 2 lines, need to check on elf with shadowmeld,
thanks a lot :star_struck:

1 Like

Mind you, this macro will not work with Incarnation: King of the Jungle, specifically, you won’t be able to enter Prowl while in combat.

1 Like

god, is it noticable that I haven’t actually played feral in a while…

it’s ugly but this one works with incarnation as well

#showtooltip
/use [combat] Shadowmeld
/console Sound_EnableErrorSpeech 0
/use !Prowl
/console Sound_EnableErrorSpeech 1
/run UIErrorsFrame:Clear()
/use [nostealth, noform:2] Cat Form

if you don’t care about error speech and text, or have it disabled anyway, you can use

#showtooltip
/use [combat] Shadowmeld
/use !Prowl
/use [nostealth, noform:2] Cat Form

with this change it will use Shadowmeld and Prowl together during Incarnation, which might or might not be optimal (as I said I haven’t played feral in a while)

I hope I have not missed anything else

2 Likes

I make the assumption that druid actually has to be in catform in order to prowl, so I would rather start with turning into cat-form and then checking for prowl

/cast [noform:2] Cat Form; [nostealth] Prowl

this way the macro works even with King of the Jungle.

kr, Moquai

Prowl activates cat form and puts you in stealth. (It also doesn’t trigger a GCD in contrast to manually activating cat form.)
With your macro you would break out of shadowmeld into cat form, something OP clearly stated they don’t want, if you are not already in cat form. It also doesn’t allow to transition from shadowmeld to prowl if you melded in cat form, which was requested, unless I misunderstood.

i noticed one thing … for some odd reason prowl is not castable while flying, any idea why ? so if i’m in bird form i need to “land” then press the button to prowl/cat, cant do that in the air :frowning:

Yes, flight form has some weird quirks when it comes to what you can and cannot do. I sadly haven’t found a working solution for that yet

i tried to experiment for the sake of it :

/use [nostealth, noform:2] Cat Form
/use [nocombat] !Prowl

this works as well as intended in 99% of the case scenarios, because prowl is off the global cooldown so going trough both is “instant”,
the issue happens when for example you are in humanoid form you healed, and pressed the button before gcd ended that makes you go into prowl then break it and get back to humanoid form, So with proper attention can be avoided (just wait for gcd) , but in pvp when you healed and are spamming to get into cat, i find myself very often in a bad situation, so i still prefer yours, just need to land )

1 Like

Put
/cancelaura whateverflightformbuffiscalled
before your other comands to solve that particular issue.

2 Likes

is it possible to do the shadowmeld one that in combat it goes shadowmeld prowl in 1 click ?

I don’t think, so since shadowmeld has to drop combat first before you can prowl (unless it’s the first prowl in incarnation).

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.