Macro Help

At the moment i have two buttons for Death and Decay that use these hotkeys / effects.

C - Cast Death and Decay at player
/cast [@player] Death and Decay

Shift C - Area Targeted Death and Decay

Is there anyway to combine these into one Macro?

unbind shift-c, use the following macro

#showtooltip
/cast [mod:shift,@cursor] [@player] Death and Decay

If you want to see the reticle rather than it just casting at your cursor location

#showtooltip
/cast [mod:shift] [@player] Death and Decay

Cheers man.