I am out of space on my bars, I need to make some macro for buffs.
I need something like I used in TBC:
/cast [Button:1] something
/cast [Button:2] something else
How to make such thing in vanilla?
|
|
|
|
|
|
Mr_Rosh wrote:Sure.
With Shift:
/script if (IsShiftKeyDown())then CastSpellByName("Healing Touch(Rank 4)") else CastSpellByName("Healing Touch");end
With Ctrl:
/script if ( IsControlKeyDown() ) then DoSomething(); end
With Alt:
/script if ( IsAltKeyDown() ) then DoSomething(); end
Chose as you wish, and remember, Google is your friend .
Have a good day !
|