Page 1 of 1

Need help with a macro

PostPosted: Wed Oct 21, 2015 5:26 am
by Tatsujen
I tried to replicate a macro that worked in retail.

/cast [mod:shift] Renew; Lesser Heal

So that I can make my F key both of those healing spells for on the fly healing. I've tried changing it to modifier, making sure shift f isn't key bound, and a different assortment of things. Nothing seems to work.

Please help me.

Re: Need help with a macro

PostPosted: Wed Oct 21, 2015 8:50 am
by LYQ
/run if IsShiftKeyDown() then CastSpellByName("Renew") else CastSpellByName("Lesser Heal") end

not sure how your macro(retail macro syntax) works - but I assume it's like this:
if shiftkey is pressed you cast renew, if not lesser heal

Re: Need help with a macro

PostPosted: Thu Oct 22, 2015 10:48 pm
by Tatsujen
Awesome, it works. Thank you very much.