Macro forum experts!

I’d do this:

#showtooltip
/use [mod:alt]Healthstone;[mod:ctrl]Kyrian Bell;[mod]Heavy Shrouded Cloth Bandage;[combat]Spiritual Healing Potion;Conjured Mana Bun
/castsequence [nocombat]Conjure Refreshment,null

Cleaner and shorter version of yours, will also conjured a stack of food for you the first time you press it out of combat each session. ReloadUI if you need to make more and don’t want to do it from the spellbook.

For additional consumables, there’s the steward Phial if you are Kyrian, nothing else I can think of.

1 Like

Can someone explain if I just messed this up for fire mage or if this is a bug
I use a macro for fire ball and fireblast as
#showtooltip
/cast [mod:shift] Fireblast
/cast Fireball

When I use the shift mod for Fireblast, it automatically casts Fireball afterwards. Is this my macro or a bug because with my Prot Pally I can use
#showtooltip
/cast [mod:shift] Divine Toll
/cast Avenger’s Shield

That works fine. Is there something I don’t get.

Your syntax is poor. If you only want to cast one spell there should only be a single /cast

#showtooltip
/cast [mod:shift] Fireblast; Fireball
#showtooltip
/cast [mod:shift] Divine Toll; Avenger's Shield

Fireblast is off the GCD which is why it does both.

1 Like

Tyvm I’ll try that