WW Monk 6.0.3 gnome macro

Thank you all for looking and having a go at it. I’ve followed all the feed back on what to try on fixing it. but I still can’t get the dam thing to work, so I’ve had to back to old school macros, 8( lost 10k dps in do in so but that the lost you just have to tack when thing’s just don’t wont to play ball 8{

I tried to make the macro in-game as shown with the name of the macro, it won’t fill in with the #showtooltip
/click WW-Monk

I tired everything what this page said… Still not work on mine… I need someone enter my puter and fix it… ha ha

I actually got this to work. And here is the code for it:

Sequences['MonkDPSSingle'] = {

PreMacro = [[
/targetenemy [noharm][dead]
]],
[[/cast Rushing jade wind]],
[[/cast !Fists of Fury]],
[[/cast [nochanneling] chi wave]],
[[/cast [nochanneling] !rising sun kick]],
[[/cast [nochanneling] !jab]],
[[/cast [nochanneling] jab]],
[[/cast [nochanneling] tiger palm]],
[[/cast [nochanneling] jab]],
[[/cast [nochanneling] chi explosion]],
[[/cast [nochanneling] jab]],
[[/cast [nochanneling] jab]],
[[/cast [nochanneling] Expel Harm]],
[[/cast [nochanneling] jab]],
[[/cast [nochanneling] tiger palm]],
[[/cast [nochanneling] [combat]Energizing Brew]],
[[/cast [nochanneling] [combat]Expel Harm]],
[[/cast [nochanneling] !jab]],

PostMacro = [[

/cast !touch of death
]],
}

However it seems to get quite high in chi from time to time. But with a pretty crappy gear (640 mainly tank items) I manage to keep a consistent 14k dps on the raid-dummy in warspear.

If you have any ideas of how to make it spend more chi I am all ears!

ok right so this is what i am using…on mobs…sit at 15-20k and about 10k single target in 600 gear freshly dinged.

Sequences[‘Monk’] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
‘/cast Rushing jade wind’,
‘/cast !Fists of Fury’,
‘/cast [nochanneling] chi wave’,
‘/cast [nochanneling] !rising sun kick’,
‘/cast [nochanneling] !jab’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] tiger palm’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] chi explosion’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] Expel Harm’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] tiger palm’,
‘/cast [nochanneling] [combat]Energizing Brew’,
‘/cast [nochanneling] [combat]Expel Harm’,
‘/cast [nochanneling] !jab’,
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

now the trick that most people struggle with and it took me a while to figure out. GET notepad++. so worth it for macros and checking them. next. when you copy and paste. make sure to check all the '/cast lines are 1 tab button over. i had the prob where it wouldnt load the sequences.lua cause the '/cast lines were 4 spacebars instead of 1 tab. notepad didnt pick it up but ++ did. running it on a g13 with .18 sec button pushes on 200 odd ms latency. only prob is sometimes it doesnt fire off chi explosion and shorts FOF halfway through…but that may be a button thing and not the macro.

I ccan tell you now Gnome sequencer has given me a headache. I did however get it to work on the macros listed in this post by doing thefollowing.

Sequences[‘Monk’] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
‘/cast Rushing jade wind’,
‘/cast !Fists of Fury’,
‘/cast [nochanneling] chi wave’,
‘/cast [nochanneling] !rising sun kick’,
‘/cast [nochanneling] !jab’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] tiger palm’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] chi explosion’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] Expel Harm’,
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] tiger palm’,
‘/cast [nochanneling] [combat]Energizing Brew’,
‘/cast [nochanneling] [combat]Expel Harm’,
‘/cast [nochanneling] !jab’,
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

I changed the ’ to " . However when I did that the macro made a double “( looked like this in the macro “”/cast [nochanneling] [combat]Expel Harm”",) I then deleted the second one and wella bam thank you maam it worked.

make sure each line has a single " or ’ like the following

“/cast [nochanneling] [combat]Expel Harm”

With what Sequence are you guys making the most dmg?
Just curious. Sometimes the dmg seems decent on a few and then it drops again on an other day :smiley:

Mabe another question from my side.
In MoP I used SuperDupermacro Addon and had this nice macro going on. It was formidable. It worked for both PvP and PvE so awesome
But since WoD it won’t work anymoe. Is there by any chance to get this to work again?
Appreciate the help :slight_smile:

#showtooltip Jab
/targetenemy [noharm][dead]
/castsequence reset=15/combat/target Disable,null
/castsequence [nochanneling]reset=0.3 0,0,0,Chi Wave
/castsequence [nochanneling]reset=0.3 0,0,Blackout Kick
/castsequence [nochanneling]reset=0.3 0,Jab,jab
/castsequence [nochanneling]reset=combat !Rising Sun Kick,Tiger Palm,Blackout Kick,!Rising Sun Kick,Tiger Palm,Blackout Kick,disable
/use [combat]Energizing Brew
/use [combat]chi brew
/startattack

Give this a try guys, everything seems to be firing off when it should, might still need some tweeking but i like it.

Sequences["wwmonk"] = { 
PreMacro = [[
/targetenemy [noharm][dead]
]],
	StepFunction = [[
		stepa = "43142546342"

		limit = string.len(stepa) or 1
		if stepc == nil then
			stepc = 1
		end
		if stepc >= limit then
			stepc = 1
		else
			stepc = stepc + 1
		end
		step = tonumber(strsub (stepa, stepc, stepc))
	]],

	-- Macro 1
	[[
/run("Executing macro 1!")
/cast Tiger Palm
	]],
	
	-- Macro 2
	[[
/run("Executing macro 2!")
/cast Blackout Kick
	]],
	
	-- Macro 3
	[[
/run("Executing macro 3!")
/cast Jab
	]],

	-- Macro 4
	[[
/run("Executing macro 4!")
/cast Rising Sun Kick
	]],
    -- Macro 5
	[[
/run("Executing macro 5!")
/cast Chi Wave
	]],
    -- Macro 6
	[[
/run("Executing macro 6!")
/cast Expel Harm
	]],
	PostMacro = [[
/run UIErrorsFrame:Clear()
/use [combat]Energizing Brew
/cast [combat]blood fury
]],
}

[quote quote=21593]Give this a try guys, everything seems to be firing off when it should, might still need some tweeking but i like it.

Sequences["wwmonk"] = { 
PreMacro = [[
/targetenemy [noharm][dead]
]],
	StepFunction = [[
		stepa = "43142546342"

		limit = string.len(stepa) or 1
		if stepc == nil then
			stepc = 1
		end
		if stepc >= limit then
			stepc = 1
		else
			stepc = stepc + 1
		end
		step = tonumber(strsub (stepa, stepc, stepc))
	]],

	-- Macro 1
	[[
/run("Executing macro 1!")
/cast Tiger Palm
	]],
	
	-- Macro 2
	[[
/run("Executing macro 2!")
/cast Blackout Kick
	]],
	
	-- Macro 3
	[[
/run("Executing macro 3!")
/cast Jab
	]],

	-- Macro 4
	[[
/run("Executing macro 4!")
/cast Rising Sun Kick
	]],
    -- Macro 5
	[[
/run("Executing macro 5!")
/cast Chi Wave
	]],
    -- Macro 6
	[[
/run("Executing macro 6!")
/cast Expel Harm
	]],
	PostMacro = [[
/run UIErrorsFrame:Clear()
/use [combat]Energizing Brew
/cast [combat]blood fury
]],
}
```[/quote]

How much dps does you monk pull off with it? :)

its going to vary on gear and talents, I was just looking for a rotation that fires off without the long pauses. Its keeping the damage buffs up.

But exactly why did you put expel harm in the macro? Why not something like RJW or FoF?

Did you try the macro? try it first then ask me

I don’t see the point in expel harm. And yeah, i tried it. 634 ilvl and the macro is doing only 3k on lvl 102 trainingdummy…

Expel Harm costs 40 Energy, and generates 2 Chi. In this sense, it is identical to Jab.

[quote quote=21593]
StepFunction = [[
stepa = “43142546342”

	limit = string.len(stepa) or 1
	if stepc == nil then
		stepc = 1
	end
	if stepc >= limit then
		stepc = 1
	else
		stepc = stepc + 1
	end
	step = tonumber(strsub (stepa, stepc, stepc))
]],

-- Macro 1
[[

/run(“Executing macro 1!”)
/cast Tiger Palm
]],

ETC.[/quote]

This is some new script for me. Can someone explain how it works?

Hi Todd, I tried it and it’s great. However, two questions:

1 - I was just wondering about FoF? Do you include it outside of the macro or is it not part of your rotation at all?

2 - Is there a way to add “Touch of Death” and “Serenity” to it?

Thanks!

I’ve modified several macros here but this is my go:

Talents I’ve Chosen:3,1,2,3,1,1,2

Talents Required:chi wave, ascension,RJW, ChiX

Pulling about 14k avg on garrison dummy (102)

Please feel free to modify and comment always looking to get better. Oh I am MANUALLY applying Tiger palm buff as my macro does it way way too often. Running a naga macro at 0.200.

	Sequences["wwmonk"] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast [nochanneling] Rushing Jade Wind',
"/cast !Fists of Fury",
'/cast [nochanneling] chi wave',
"/cast [nochanneling] !rising sun kick",
'/cast [nochanneling] jab',
'/cast [nochanneling] jab',
'/cast [nochanneling] chi explosion',
'/cast [nochanneling] jab',
'/cast [nochanneling] Expel Harm',
'/cast [nochanneling] jab',
'/cast [nochanneling] [combat]Energizing Brew',
PostMacro = [[
/cast !touch of death
]],
}

[quote quote=21809]I’ve modified several macros here but this is my go:
Talents I’ve Chosen:3,1,2,3,1,1,2
Talents Required:chi wave, ascension,RJW, ChiX
Pulling about 14k avg on garrison dummy (102)
Please feel free to modify and comment always looking to get better. Oh I am MANUALLY applying Tiger palm buff as my macro does it way way too often.[/quote]

Hi Iniquity,

I’m loving the macro for Heroics and for any fight with more than one target. I tried this in Highmaul Heroic for a bit and it performed well on trash but I didn’t get a chance to try it on a ST boss fight like Khargath or Butcher. I’ll be running Normal tonight, so it will give me a chance to test it on them then.

That being said, do you also use this on single target fights? I was under the assumption that Xuen and Serenity were better for ST? Then again, I can see the benefit of having RJW and CHIX always up as opposed to waiting for Xuen and Serenity to come off CD’s

Thanks!

Or you could just paste your working code into your post using the CODE tag…

Silent…
Your FOF is canceling because you don’t have [nochanneling] in front of it. As its an actual “channeled” spell.