Hello ppl.
I just can’t find the macro on the Internet ...
I need that from 1 click the spell be used on 1 character, from next click - on 2, from 3 click - on 3 character and so on and on and on
Thank you all
Printable View
Hello ppl.
I just can’t find the macro on the Internet ...
I need that from 1 click the spell be used on 1 character, from next click - on 2, from 3 click - on 3 character and so on and on and on
Thank you all
Go google how to make macro.
Otherwise, stop boxing immediately!
You are looking for toggle function, not a macro. Don't know what software you use but should be easy to set up on all of them.
Total Spell + commas should be the total number of chars you use. Example is for 5.
Char 1
/castsequence Spell,,,,
Char 2
/castsequence , Spell ,,,
Char 3
/castsequence ,,Spell,,
and so on
Comma or null means nothing happens upon key press and sequence moves on.
technically incorrect
typing in "null" means the macro will try to cast the spell named "null", which obviously doesnt exist. this would stop the macro on that step of the sequence.
EG)
/castsequence Icy Touch,,Plague Strike
first press = icy touch, second press = nothing, third press = Plague Strike, fourth press = icy touch
/castsequence Icy Touch, null, Plague Strike
first press = icy touch, second press = null, third press = null, fourth press = null etc.