Jump to content
Sign in to follow this  
Milton

One button macro (r1/r4/r7 in same button)

Recommended Posts

Is it possible to make a macro with rank 1/4/7 of a spell, for example healing touch?

Holding ctrl down = rank 1, shift = rank 4 and no modifier = max rank 

This one I know is only with shift mod:

/run local x = IsShiftKeyDown(); if x == nil then cast("Frostbolt(Rank 11)")
else cast("Frostbolt(Rank 1)") end

 

Can someone tell me how to have another rank of Frostbolt (example) in this macro?

 

Edited by Milton

Share this post


Link to post
Share on other sites

/script if IsShiftKeyDown() then CastSpellByName("Heal(Rank 1)") else if IsAltKeyDown() then CastSpellByName("Heal(Rank 3") else CastSpellByName("Heal(Rank 4)"); end end;

It might not display correct rank on cast bar, but check combat log and you'll see it does.

Share this post


Link to post
Share on other sites
On 30/12/2016 at 10:18 PM, Moiz said:

/script if IsShiftKeyDown() then CastSpellByName("Heal(Rank 1)") else if IsAltKeyDown() then CastSpellByName("Heal(Rank 3") else CastSpellByName("Heal(Rank 4)"); end end;

It might not display correct rank on cast bar, but check combat log and you'll see it does.

Thx a lot. Tested and works :)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×