Shorten Druid Macro?

Is there any way to shorten the following macro?

/cast [swimming] Aquatic Form
/cast [nocombat,nomod] Travel Form
/cancelaura [stance:4][combat] Travel Form
/cast [mod:shift][mod:alt, combat][combat] Cat Form
/cast [mod:alt] Bear Form
/cancelaura [stance:3] Cat Form
/cancelaura [stance:1] Bear Form

Because I would love to add #showtooltip to it, but that’s currently not possible due to it taking 250/255 macro characters.
I’m not a macro god, so I don’t know how to shorten this in a decent way (if even possible)
Aside from that, if any improvements can be done to the macro I would love to see them!

Thnx in advance!

At a short glance you can definitely fit a #show in there by changing the “stance” to “form”. That’ll at least show the icon, even if it won’t show the tooltip.

edit:

You can also shorten this:

/cast [swimming] Aquatic Form
/cast [nocombat,nomod] Travel Form

To this:

/cast [swimming]Aquatic Form;[nocombat,nomod]Travel Form
1 Like

Does that macro actually work?

Thank you very much sir!

@ Dottie, Ofcourse it works. Elseway, I wouldn’t be using it :slight_smile:

No worries, you can save a bunch of characters by removing spaces between ] and the spell name too, you might be able to squeeze in #showtooltip simply by pruning the macro and making no real changes :>

I knew the trick with spaces indeed! I just changed my macro and it comes down to the following:

#showtooltip
/cast [swimming]Aquatic Form;[nocombat,nomod]Travel Form
/cancelaura [form:4][combat]Travel Form
/cast [mod:shift][mod:alt, combat][combat]Cat Form
/cast [mod:alt]Bear Form
/cancelaura [form:3]Cat Form
/cancelaura [form:1]Bear Form

And it still works perfectly, thnx a bunch!

1 Like

/cancelform [stance:1] [stance:3]
/cast [swimming] Aquatic Form; Travel Form

I’m missing some context here.
This isn’t the same macro as above, this one only casts Travel Form.

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