Totem Macro

Will the /castsequence macro work here? It doesnt work on emerald dream for me...
jeppe010 wrote:Will the /castsequence macro work here? It doesnt work on emerald dream for me...
Fiskpinne wrote:There is no such thing as /castsequence in vanilla. You just have to keybind all your totems.
/script if IsShiftKeyDown() then CastSpellByName("Windfury Totem") else CastSpellByName("Tranquil Air Totem") end
/script i=1;m=0;while(UnitBuff("target",i)~=nil) do
if(strfind(UnitBuff("target",i),"NAME OF BUFF 1")~=nil) then m=1; end;i=i+1;end; c=CastSpellByName;
if(m==1) then c("NAME OF SPELL 1");else c("NAME OF SPELL 2");end;