Help needed with MW macros

Hello,

really enjoying MW so far. Quick qestion about macros.

For example I’ve been using this one

#showtooltip
/cast [help, nodead] Renewing Mist; [@target, harm, nodead] Tiger Palm; Renewing Mist
#showtooldtip Renewing Mist

So what I want it to do is, despite having a hostile taget, when I press alt, it would cast RM on me. I kinda can’t get it to work with [mod:alt] and [@player].

Appreciate any help!

I usually bind key combinations to action bars with something like bartender (not sure if the default UI can do it). It’s much cleaner and easier to modify in case you want to rearrange spells.

It can, and this is what I do too. If you’re just making modifier-key binds, this helps keep your macros unambiguous and easier to write :smile_cat:

#showtooltip Renewing Mist
/cast [mod:alt, @Player,exists] Renewing Mist
/stopmacro [mod:alt]
/cast [@Target,harm,exists] Tiger Palm; Renewing Mist

how about this ? Does it help ?

You could make it as small as

#showtooltip
/cast [harm,nodead,nomod:alt] Tiger Palm; Renewing Mist

This will get the job done as long as you have auto self cast enabled (who doesn’t?). But, since you might want alt to force self-cast even when you have a friendly target:

#showtooltip
/cast [harm,nodead,nomod:alt] Tiger Palm; [mod:alt,@player][] Renewing Mist

It does. Great! Thanks a bunch!

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