Catform and Prowl macro

Hi guys,
Im quite bad in making macros perhaps someone could help out.

I’m looking for a macro that will perform 2 things:

  1. When im out out combat: first press gets me catform+stealth second press removes Prowl.
  2. In combat Enters Catform if Prowl is not usable (for example in case of lack of Incarnation - but if you have incarn it should use Prowl.

Not exactly what you’re looking for but it’s a good starting Point;

#showtooltip
/cast [nocombat,nostealth] Prowl; Cat Form

If you’re not in combat or stealth it’ll cast Prowl (putting you into cat form and stealthing you) otherwise it will just cast Cat Form which will either change you into or out of Cat Form depending on current.

4 Likes

Yeah, this macro almost works, out of combat however if your Prowl is on CD you can’t use it again and it doesnt pop incarnation Prowl in combat.

You cant GCD is your best friend

We can “abuse” the fact that casting Prowl will automatically turn you into a cat too. But there’s no way to detect an active buff or if spell is allowed to be cast.
So you’ll have to manually try casting Prowl when Incarnation is active.

You can’t make macro conditionals with active buffs, which means we can’t make it do different things depending on wether or not you have Incarnation up.

Prowl already puts you into cat form, so there’s no need of a macro for this.

This macro will cast Prowl when out of combat, and Cat Form when you’re in combat:

#showtooltip
/cast [nocombat] Prowl; [combat] Cat Form

Alright, again perhaps i did not expressed myself clearly enough.

Back in the day before Legion killed off powershifting I used a single macro for everything that Catform does.
Out of combat enter catform, prowl or disable prowl (with just 2 clicks)
When in combat it was powershifting and later i added function to enable prowl from incarnation.
Later on for some reason that macro stopped working.
That is what i was looking for.

Yes we can, well i did anyway. I fixed my macro.
Added /cast [combat,stance:2] Prowl; [combat] !Cat Form - to it and it’s working exactly how i wanted :slight_smile:

2 Likes

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