Hey y’all,
I want a macro that will cast cyclone on arena1 when I’m in an arena, but when I’m out of the arena it will cast cyclone on whatever target i have selected- world pvp for example.
I’m having a hard time figuring this out, so any help is appreciated!
Thanks!
1 Like
there is no conditional for being in an arena, and as far as i know is no list of arena zones that you could use to make a work-around that way.
though you can use modifiers and @arena1, @arena2 to make something that should meet your needs
#showtooltip
/cast [mod:shift,@arena1] [mod:ctrl,@arena2] [@arena1,nodead] [@arena2,nodead] [] cyclone
You just need an existence check.
#showtooltip
/cast [@arena1,harm,nodead] [] Cyclone
3 Likes
Thank you! I’m awful at macros and knew it would be a simple fix.