How do I make a macro for sunfire in form (tooltip)?

looks like these need to say like “Sunfire(cat)” or “Sunfire(bear)” cause every time i try to make a sunfire macro it just deshifts me

1 Like

For cat and bear

#showtooltip
/startattack
/cast Moonfire(rank 1)

For season of discovery Rank 1 moonfire is changed to sunfire

1 Like

I haven’t done mine in aacro currently but I don’t have any issue with it.
Was the macro done manually, or through shift clicking the rune ability in you spellbook?

Try adding through your spellbook if you haven’t.

I had the same issue with Mangle initially with bear/cat Mangle as they are different buttons.
Some replace the existing spell instead of being the new ability.

I’ll have to test this out, but it should be something like:

#showtooltip
/cast [form:1] Sunfire (Bear); [form:2] Sunfire (Cat); Sunfire;

EDIT:

Oh, okay… for some reason, you need to use Moonfire(Rank 1) in form, but the tooltip will show Sunfire, and it will cast Sunfire… so this will work:

#showtooltip
/cast [form:1/2] Moonfire(Rank 1); Sunfire
1 Like

You don’t need [form:1/2] because the single macro I linked earlier works for both and you also won’t need ; Sunfire

If you want the same keybind to work for Starfire when you are in caster form, you might… unless you actually want to cast Moonfire Rank 1!

You could also write the macro like this:

#showtooltip
/cast [noform] Sunfire; Moonfire(Rank 1)

But you may with to use that keybind for something else while in aquatic form (or later in travel form).

:woman_shrugging:

#showtooltip Hands Rune Ability
/cast [form:1] Lacerate
/cast [form:1] Mangle(Bear); Mangle(Cat)
/cast [noform] Sunfire; Moonfire(Rank 1)

This works ok.

1 Like