I am looking for a macro that will cast totems one after another, but I don't want to have to hit the button several times. I have a feeling that it isnt possible but I am still hopefull.What I am looking for is something like....
/cast strength of earth totem
/wait 1 sec
/cast mana spring totem
/wait 1 sec
/cast windfury totem
This is the basic format that FFXI uses, and I hope there is something liek this in WoW.
People say that you can exchange the /wait 1 second command
for "/stopcasting" command.
/stopcasting works after you put /cast<instant spell> and removes a (kind of bug) that prevents your macro to cast the next spell.
So, just try
/cast <instant spell>
/stopcasting
/cast <next instant spell>
/stopcasting
... and so on
Thanks, I'll have to try it out when I get home tonight
the /shopcasting doesn't work unless the instant spell doesn't trigger the global cooldown. totems use global cooldown, so you can't do this. the closest to what you can do is this:
/castsequence <spell one>, <Spell two>, etc...
you'd just click it, wait the second or so for the global cooldown, hit it again, wait for the cooldown...
yeah, I ended up having to do the /castsequence method. Guess I cant be lazy. From what I understand Blizz considers this to be cheating. Thanks for the info