Marksman Hunter Patch 6.2.3 (16/2/'16)

[quote quote=25768]

Hey, I’ve rolled hunter before but never Marksman. Is there any way you can provide a small guide for what macro should be used when, why it matters, and some tips (like “the reason why I keep stampede off the macro is ____” although I know perfectly why you did; just an example)? I only ask because this seems like a well fleshed-out macro that I intend to try out.

Hey Micah, Ofcouse I am willing to provide you some basic information about the macro use. MmSinglePre = Key 1, You spam it when boss/ target is underneath 80% health. MmSingleThrill = Key 2, You spam it when the boss/target is above 80% health, on Thrill of the Hunt and when you use Rapid Fire. ((above 80% health and on Rapid Fire, Carefull aim is activated –> Increasing your crit chance by 50%) –> Aimed Shot and Chimeara is main prio) MmMultiRot = Key 3, You can spam it whenever (in my eyes) there are more then 8 adds) Powershot -> Dealing dmg to each target it passes and knocks them back. Only the stronger adds will not be knocked back. Stampede -> Proven to be the best damage ability (Better then A murder of Crows) Pop this on a heroism, Rapid Fire and Ring use (preffer to use stampede if all can be popped before). Autohotkey or Razormouse/-keyboard. and set it on 4ms sleeptime. Simply works best atm. If you have any more specifiek questions just let me know. Cheers, Tim Roeleveld Ðarkramz [/quote]

For clarification you say 4ms which would mean setting it to 0.004 correct?

Sleep 4 in autohoykey and this 0.25 for the razor gear.

I made a misstake on that post I see.

Cheers,

Tim Roeleveld

[quote quote=25721]

Hey tim, thanks a lot for the macros! I just wanted to test it, but the macro needs to be in format. For this you can use “code” on the begin and end of the macro. I’m curious how your macro is working…
I want to test it now, so i will copy it with the right format.For the WA String you need to use a pastebin link.
EDIT: I am not sure if its only my notepad settings, but for me your ‘/ dont work. I changed it into ‘/

Thank you for your support and hopefully you will pull of as much dps i pull of with this. If you are using Autohotkey, see below. My autohotkey ``` { $1:: Loop { if not GetKeyState("1", "P") break Send 1 sleep 4 } return } { $2:: Loop { if not GetKeyState("2", "P") break Send 2 sleep 4 } return } ```This is just an example of what i use you can make this for more buttons on your keyboard or mouse. Keep on holding this keys. According to the weakaura, you just can tripple click and copy it for the whole link. And indeed I might think it’s a notepad thing. A friend of mine got my sequence.lua and did not work for him so instead of ‘ /we did need to use “/ Cheers Tim [/quote]

Hi Tim this is my AutoHotkey 1st attempt, where am i going wrog i use num pad 1,2,3 for your great macros im using a Microsoft Sidewinder x4 key board and my girfirend is going crazy with my tapping the key board.

{
$Numpad1::
Loop
{
if not GetKeyState(“Numpad1”)
break
Send Numpad1
sleep 26
}
return
}
{
$Numpad2::
Loop
{
if not GetKeyState(“Numpad2”)
break
Send Numpad2
sleep 26
}
return
}
{
$Numpad3::
Loop
{
if not GetKeyState(“Numpad3”)
break
Send Numpad3
sleep 26
}
return
}

Thanks in advance great work pal.

Tony

changed to sleep 4

Hello,
Thanks for posting this great script. I do have a silly question. Besides Barrage what is the difference between the first and second? I find I prefer to manually cast barrage so I’m wondering if I can simply use one of the two?

Thanks

[quote quote=27317]Hello, Thanks for posting this great script. I do have a silly question. Besides Barrage what is the difference between the first and second? I find I prefer to manually cast barrage so I’m wondering if I can simply use one of the two?
Thanks
[/quote]

I mainly use the MmSingleThrill and the MmMultiKey.
Go ahead, play with the sequences. It’s just the basic setup of how I use it.

Cheers and Goodluck,

Tim Roeleveld

Hi Tim

Did you get a chance to look at my script?

Cheers

Tony

What is wrong? I’m trying to do that all day! Really!!! Please help me

Sequences[‘MMST2’] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast Rapid Fire
]],
‘/cast [nochanneling] Aimed Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/cast [nochanneling] Steady Shot’,
‘/castsequence [nochanneling] Kill Shot,Steady Shot,Steady Shot, Aimed Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/castsequence [nochanneling] !Barrage’,
‘/castsequence [nochanneling] Steady Shot,Steady Shot,Steady Shot,Barrage’,
‘/castsequence [nochanneling] !Barrage’,
‘/cast [nochanneling] Aimed Shot’,
‘/cast [nochanneling] Steady Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/cast [nochanneling] !Kill Shot’,
PostMacro = [[
/startattack
/petattack
/script UIErrorsFrame:Clear()
]],
}

[quote quote=27364]What is wrong? I’m trying to do that all day! Really!!! Please help me

Sequences[‘MMST2’] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast Rapid Fire
]],
‘/cast [nochanneling] Aimed Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/cast [nochanneling] Steady Shot’,
‘/castsequence [nochanneling] Kill Shot,Steady Shot,Steady Shot, Aimed Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/castsequence [nochanneling] !Barrage’,
‘/castsequence [nochanneling] Steady Shot,Steady Shot,Steady Shot,Barrage’,
‘/castsequence [nochanneling] !Barrage’,
‘/cast [nochanneling] Aimed Shot’,
‘/cast [nochanneling] Steady Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/cast [nochanneling] !Chimaera Shot’,
‘/cast [nochanneling] !Kill Shot’,
PostMacro = [[
/startattack
/petattack
/script UIErrorsFrame:Clear()
]],
}

[/quote]

Aí está o correto meu amigo.

Sequences['MMST2'] = { StepFunction = [[ limit = limit or 1 if step == limit then limit = limit % #macros + 1 step = 1 else step = step % #macros + 1 end ]], PreMacro = [[ /targetenemy [noharm][dead] /cast Rapid Fire ]], '/cast [nochanneling] Aimed Shot', '/cast [nochanneling] !Chimaera Shot', '/cast [nochanneling] Steady Shot', '/castsequence [nochanneling] Kill Shot, Steady Shot, Steady Shot, Aimed Shot', '/cast [nochanneling] !Chimaera Shot', '/castsequence [nochanneling] !Barrage', '/castsequence [nochanneling] Steady Shot, Steady Shot, Steady Shot, Barrage', '/castsequence [nochanneling] !Barrage', '/cast [nochanneling] Aimed Shot', '/cast [nochanneling] Steady Shot', '/cast [nochanneling] !Chimaera Shot', '/cast [nochanneling] !Chimaera Shot', '/cast [nochanneling] !Kill Shot', PostMacro = [[ /startattack /petattack /script UIErrorsFrame:Clear() ]], }

[quote quote=27361]Hi Tim

Did you get a chance to look at my script?

Cheers

Tony

[/quote]

Hey Tony,

Sorry for my late responce!
I use Autohotkey, I am not familiar with writing it.
But HEY, head up! --> Google provides a lot of answers about Autohotkey <–

[quote quote=27364]What is wrong? I’m trying to do that all day! Really!!! Please help me

[/quote]

Sure I can help, but what is the exactly problem you are having?
Here is your macro in the blackbox

Sequences['MMST2'] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast Rapid Fire
]],
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling] !Chimaera Shot',
'/cast [nochanneling] Steady Shot',
'/castsequence [nochanneling] Kill Shot,Steady Shot,Steady Shot, Aimed Shot',
'/cast [nochanneling] !Chimaera Shot',
'/castsequence [nochanneling] !Barrage',
'/castsequence [nochanneling] Steady Shot,Steady Shot,Steady Shot,Barrage',
'/castsequence [nochanneling] !Barrage',
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling] Steady Shot',
'/cast [nochanneling] !Chimaera Shot',
'/cast [nochanneling] !Chimaera Shot',
'/cast [nochanneling] !Kill Shot',
PostMacro = [[
/startattack
/petattack
/script UIErrorsFrame:Clear()
]],
}

Good luck with it and have fun,

Tim Roeleveld

cheers bud

not sure if anyone else has this issue, but i seem to be missing a fair few chimera shots, have the macros n ahk set up. anyone else?
amazing macros btw

[quote quote=27575]not sure if anyone else has this issue, but i seem to be missing a fair few chimera shots, have the macros n ahk set up. anyone else?
amazing macros btw

[/quote]

Thanks for letting me know, I’ll make some changes and do some tests.
Once I am satisfied I’ll update the sequences.
And thank you for the good words!

Cheers,

Tim Roeleveld

Updated the Sequences + Description!

Please try them out and provide some feedback.

Thank you beforehand,

Cheers,

Tim Roeleveld

works a treat mate, thanks for the update/hard work :smiley:

[quote quote=27587]Updated the Sequences + Description!

Please try them out and provide some feedback.

Thank you beforehand,

Cheers,

Tim Roeleveld

[/quote]

Just did 34k as ilvl 688! Was 2nd in dps…pretty good aint it?

Hey Thor M,

That is pretty good for that ilvl and no tier set.
Good luck farming your tier 18, 4-set.

Your DPS increase will be insane then.

Cheers,

Tim Roeleveld

Sequences['MmSingleThrill'] = {
StepFunction = [[
	limit = limit or 1
	if step == limit then
		limit = limit % #macros + 1
		step = 1
	else
		step = step % #macros + 1
	end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast Rapid Fire
]],
	'/cast [nochanneling] !Chimaera Shot',
	'/castsequence [nochanneling] reset=8 Steady Shot,!Chimaera Shot',
	'/cast [nochanneling] Aimed Shot',
	'/cast [nochanneling] Steady Shot',
	'/cast [nochanneling] !Kill Shot',
PostMacro = [[
/startattack
/petattack
/script UIErrorsFrame:Clear()
]],
}

nice update :slight_smile:

im tested your macros TIm…sadly they rely not working wel…skipping to many chimera…and to low on aimed…even when trill procked it is doign steady capping focus like crazy…Kill shot delay is to much too

[quote quote=27606]im tested your macros TIm…sadly they rely not working wel…skipping to many chimera…and to low on aimed…even when trill procked it is doign steady capping focus like crazy…Kill shot delay is to much too

[/quote]

This sequence should be used with a spam button, works perfectly! Chimaera fires of each time, use kill shot also manually. And when thrill procs it is never caped. Use autohotkey and spam the button.

We did a raid yesterday with 3 hunters (all around ilvl 730) they use the spam button autohotkey on sleep 4 and sleep 18 we all could easy hold around 90-105k dps steady with bursts that hit 350k.

I feel bad for you that it won’t work like you wish, and I hope there are macro’s that give you better dps.

Cheers,

Tim Roeleveld