I was wondering, are there any way to change the icon other than #showtooltip? When I want to cancel some of my buffs I always right click on the wrong one because those buff icons on the top right corner keeps jumping around, so I made a macro like this:
#showtooltips [modifier:shift] Blazing Barrier; [!modifier:shift] Ice Barrier
/cancelaura [modifier: shift] Ice Barrier
/use [!modifier: shift] Ice Barrier
Now the problem is, Blazing Barrier icon is showing as a question mark instead of Blazing Barrier, because I’m in Frost spec, so are there any other way to display that icon without using showtooltip?
Almost everything about that macro is wrong lol.
#showtooltip
/cancelaura [spec:1] Prismatic Barrier; [spec:2] Blazing Barrier; [spec:3] Ice Barrier
/cast [spec:1] Prismatic Barrier; [spec:2] Blazing Barrier; [spec:3] Ice Barrier
So this will change depending on your spec rather than needing a modifier to pick the armor to cancel/cast as they’re spec specific.
I put a modifier there because I’m a button spammer (I blame GCD for that bad habit) and I would cancel the barrier immediately after I cast it lol.
Ah, with how you had it written originally I couldn’t tell what you were trying to use the modifier on. !mod
isn’t a thing, it’s nomod
.
mod:shift
added to the cancel and the cast modified to only enable (under normal circumstances re-casting it 1+ GCD later will cancel).
#showtooltip
/cancelaura [mod:shift,spec:1] Prismatic Barrier; [mod:shift,spec:2] Blazing Barrier; [mod:shift,spec:3] Ice Barrier
/cast [spec:1] !Prismatic Barrier; [spec:2] !Blazing Barrier; [spec:3] !Ice Barrier