My mistweaver macros for 7.1.5 Update 3rd. Feb. 17

Here are my macros that i am using currently. I am still using the old GS , so i dont know how my macros perform with GSE 2.0.
The talents dont matter. The talents at the macro are what i am using in dungeons. For dungeons i am going for haste. You can calculate the best statweight for you here Geodew's Mistweaver Stat Weights - Google Sheets

I am using this macros with 50ms delay.

Single Target low Heal

Use this for targets with almost full live / that aren’t in danger. You can use it for keeping Renewing Mist up on all targets by pushing the button only some ms. You maybee need to repeat it once or twice before RM fire off, depends on you mouse setting.

Sequences['siLOWmw'] = {
  Author="Nobody",  
  SpecID=270,
  Talents = "2133132",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
      },
      PreMacro={
      },
        "/castsequence [@mouseover,exists,help,nodead][@target] Renewing Mist, Effuse",
		        "/cast [@mouseover,exists,help,nodead][@target] Effuse",
		        "/cast [combat] Zen Pulse",
      PostMacro={
      },
      KeyRelease={
        "/cast [combat] Renewing Mist",
      },
    },
  },
}

Single Target high Heal

Sequences['siHIGHmw'] = {
  Author="Nobody",  
  SpecID=270,
  Talents = "2133132",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
		        "/castsequence [@mouseover,exists,help,nodead][@target] Thunder Focus Tea, Renewing Mist, Effuse",
      },
      PreMacro={
      },
        "/castsequence [@mouseover,exists,help,nodead][@target] Renewing Mist, Enveloping Mist, Effuse",
		        "/castsequence [@mouseover,help,nodead][@target] Effuse",
		        "/cast [combat] Zen Pulse",
	      PostMacro={
      },
      KeyRelease={
       "/castsequence [combat] Thunder Focus Tea, Renewing Mist",
      },
    },
  },
}

Multi target Heal

Sequences['MUmw'] = {
  Author="Nobody",  
  SpecID=270,
  Talents = "2133132",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
		        "/castsequence [@mouseover,exists,help,nodead][@target] Thunder Focus Tea, Renewing Mist, Vivify",
      },
      PreMacro={
      },
        "/castsequence [@mouseover,exists,help,nodead][@target] Renewing Mist, Vivify",
		        "/cast [@mouseover,exists,help,nodead][@target] Vivify",
		        "/cast [combat] Zen Pulse",
      PostMacro={
      },
      KeyRelease={
        "/castsequence [combat] Thunder Focus Tea, Renewing Mist",
      },
    },
  },
}

DoT Macro

Sequences['DoTmw'] = {
  Author="Nobody",  
  SpecID=270,
  Talents = "2133132",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
      },
      PreMacro={
      },
        "/cast [nochanneling] [@mouseover,exists,help,nodead][@target] Enveloping Mist",
        "/cast [nochanneling] [@mouseover,exists,help,nodead][@target] Renewing Mist",
	      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Single Target Damage

Sequences['MWsiDamage'] = {
  Author="Nobody",  
  SpecID=270,
  Talents = "2133132",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
      },
      PreMacro={
      },
        "/cast [combat] Zen Pulse",
		        "/cast [nochanneling] Rising Sun Kick",
		        "/castsequence [nochanneling] Tiger Palm, Blackout Kick",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Multi Target Damage - dont work perfect. Best results for me with Ingame ping + 400ms

Sequences['MWmuDamage'] = {
  Author="Nobody",  
  SpecID=270,
  Talents = "2133132",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
      },
      PreMacro={
      },
        "/cast [combat] Zen Pulse",
		        "/cast [nochanneling] Spinning Crane Kick",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Have fun !

Cant edit my post :confused:
Here you can calculate the best stats for yourself (atm i have 26% / 9600 haste and its working fine for me)

Geodew's Mistweaver Stat Weights - Google Sheets

NVM. I just need to manage Thunder Focus Tea better.

Multi Target Damage needs to be

"/cast [nochanneling] Spinning Crane Kick",

instead of

"/cast[nochanneling] Spinning Crane Kick",

and the dot one is not casting Reneweing Mist - for whatever reason.
Beside that - working good.

Are you casting Essence FOnt manually?

I’m still having issues with the multi-target heal macro. Sometimes it freezes until I cast something else or try to cast on someone else.

Thanks Mike, i did change it. Yap, i have it one a seperate button.
I will try to replicate and fix these errors the next days.
Thanks for your feedback guys !

So i changed the DoT Macro. Renewing Mist should fire up now. I didnt test it in Raid, because i switched to BM Hunter.
The AOE Heal macro i did test 3 times (on a dummy), till my mana was empty, it didnt stuck for me.

It may be due to waiting on renewing mist cd. That’s all I can think of. It doesn’t do it on a regular basis.