Page 1 of 1

macro help

PostPosted: Sun Mar 22, 2015 3:17 am
by ColAngus
I'm looking for a way to add a control modifier. I'm use to writing it as such:

/cast [modifier:ctrl] Kick(Rank 1); Sinister Strike(Rank 4)

but it isn't working. Mashing the button by itself will sinister strike, holding either control button and mashing it will kick instead. Help, please.

Col

Re: macro help

PostPosted: Sun Mar 22, 2015 11:43 am
by whissper
Code: Select all
/script local a,b=IsControlKeyDown,CastSpellByName;if(a())then b('Kick');else b('Sinister Strike');end

Re: macro help

PostPosted: Sun Mar 22, 2015 12:49 pm
by ColAngus
Perfect! Thank you!