Toggle Slow Fall Macro

Can anyone tell me if there's a macro that will toggle Slow Fall on and off, I guess using /cancelaura if it's possible? In fact when experimenting, I discovered that /cancelaura Slow Fall doesn't even work. Any idea if there's a macro that can cancel Slow Fall?
/cancelaura should work, is there something else in your macro?
11/11/2018 18:38Posted by Lentat
/cancelaura should work, is there something else in your macro?


Ok so yes the /cancelaura macro does work (my bad), but I'd still like to know if it's possible to write a macro which will toggle Slow Fall on and off in one button, rather than having to use 2 separate buttons (one for Slow Fall, one foe cancelaura macro) as I do at the moment.

macros cant check for “if”-like conditions, you would have to check “if buff is active” to only remove it for a single buttonpress solution. you could try coming by with [mod], e.g

/cancelaura slow fall
/use [mod] slow fall

that way it will always cancel the buff, and in case of any mod-key pressed reapply slow fall afterwards.

Well ty for info. Just to say, I did say I knew I could use 2 different buttons, which is effectively what you suggest.

You actually can have the macro disspell Slow Fall if it’s already present, with a line of Lua (addon) code in your macro.

Just one drawback: It only works out of combat. So you might still want to add a modifier key such as shift, ctrl or alt for when you’re in combat. :wink:

Ok thanks. I have to add some chars to meet the minimum limit, so here they are.