Hello, just coming back to the game, going back to play DK.
I’m trying to find a more efficient way to run the following macro. It’s goal is to condense in a single macro a way to cast a different spell (which I plan to assign to the same hotkey) depending on my specialization. The following macro works but exceeds the 255 character limit, so I have to use an addon called Macro Toolkit.
#showtooltip
/cast [spec:1,@mouseover,harm]Death's Caress;[spec:2,@mouseover,harm]Howling Blast;[spec:3,@mouseover,harm]Outbreak;[spec:1,@target,harm]Death's Caress;[spec:2,@target,harm]Howling Blast;[spec:3,@target,harm]Outbreak;[spec:1]Death's Caress;[spec:2]Howling Blast;[spec:3]Outbreak
Is there a better way to write this in order to fit the 255 character limit? While Macro Toolkit is quite handy, I’d rather not depend on it.