View Single Post
01-16-13, 09:52 PM   #2
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Your macro syntax is incorrect; that macro shouldn't have ever worked. When specifying multiple conditions (eg. for /clearfocus) for the same command, you separate them with a space, not a semicolon. Semicolons are used for specifying different actions for different conditions with the same command (eg. /cast [a] x; [b] y; z).

Try this:
Code:
#showtooltip Blood Fear
/clearfocus [@focus, dead] [@focus, noexists] [mod:ctrl]
/stopmacro [mod:ctrl]
/focus [@focus, mod:shift]
/cast [@focus, mod:shift] [] Blood Fear
(I also cleaned up some other redundant/unnecessary stuff.)
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote