BM All in one With Logs to back it up.

Tater,

Thanks for this. For the first time my macro casting has me where I should be with the people who don’t use macro’s. Impressive stuff.

tater whats the mod for multi shot

Is there any way to force the use of Titan’s Thunder ONLY after a Dire Beast cast?

[quote quote=44672]Is there any way to force the use of Titan’s Thunder ONLY after a Dire Beast cast?
[/quote] As far as I know the only way to make that possible would be to manually cast Titan. I don’t think you can control things like that with a macro but I could be wrong.

you could try adding

/cast [mod:Shift] Titan’s Thunder to your macro that way it will only cast when you hold down Shift and press your macro keybinding if you are looking to only cast when you have a dire Beast out…

Gnome Sequencer translation of Tatershòts’s Macro:

--  Author  = Tater@Area 52
--  Talents = 3, 1, 1, 3, 1, 1, 2
Sequences['TaterBeast'] = {
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] 
/startattack
/petattack [@target,harm]
/cast [combat] Bestial Wrath
/cast [combat] Blood Fury
/cast [combat] Titan's Thunder
/cast [combat] Aspect of the Wild
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
/cast [mod:alt] Multi-Shot
/cast [nopet,nodead] Call Pet 1; [@pet,dead] Heart of the Phoenix
/cast [combat,pet:Spirit Beast,@player] Spirit Mend
/cast [combat,pet,@player] Roar of Sacrifice
/cast !Volley
]],
   '/cast Dire Beast',
   '/castsequence Kill Command, Cobra Shot',   
   '/cast A Murder of Crows',
PostMacro = [[
/startattack
/petattack
/cast Mend Pet
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
]],
}

.

Trying the 3 new macro’s on the site, Tater’s still has them beat, by a large margin!

I would like to change it to

3113131 for Mythic plus…

Where would i add stampede?

Can anyone help modifying this one here with stampeed ? Maybe tater could do this.

Thanks

[quote quote=44994]I would like to change it to
3113131 for Mythic plus…
Where would i add stampede?
Can anyone help modifying this one here with stampeed ? Maybe tater could do this.
Thanks
[/quote]

Gnome Sequencer translation of Tatershòts’s Macro with requested modification by Øptìmusprìme with addition of Stampede:

--  Author  = Tater@Area_52
--  Talents = 3, 1, 1, 3, 1, 1, 2
--  Talents = 3, 1, 1, 3, 1, 3, 1  -- Øptìmusprìme Talents
Sequences['TaterBeast'] = {
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] 
/startattack
/petattack [@target,harm]
/cast [combat] Bestial Wrath
/cast [combat] Blood Fury
/cast [combat] Titan's Thunder
/cast [combat] Aspect of the Wild
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
/cast [mod:alt] Multi-Shot
/cast [nopet,nodead] Call Pet 1; [@pet,dead] Heart of the Phoenix
/cast [combat,pet:Spirit Beast,@player] Spirit Mend
/cast [combat,pet,@player] Roar of Sacrifice
/cast !Volley
]],
   '/cast Dire Beast',
   '/cast Stampede',
   '/castsequence Kill Command, Cobra Shot',   
PostMacro = [[
/startattack
/petattack
/cast Mend Pet
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
]],
}

Macro for sure approved, not even decent geared yet and it still does the trick.

LFR hero logs…
https://www.warcraftlogs.com/reports/9MG2tyhZgAfcVznB#fight=10&type=damage-done

https://www.warcraftlogs.com/reports/9MG2tyhZgAfcVznB#fight=13&type=damage-done

hello tater macro is pretty great, you could still improve to make it really effective to raid heroico mythical? for example, I noticed that sometimes in a block to wait for it to finish the spell coldow and meanwhile could maybe pull a fair shot cobra? I currently have 887 item livel with 4 sets tier bonus and 2 legendary (head and neck) I’m about 450 DPS 500h say. you can still improve to work accurately spell and coldow ??

.

says yoru custom step function is not allowed

[quote quote=45061]says yoru custom step function is not allowed
[/quote]

The type of thing that can drive a programmer crazy, it’s extra space at the end of lines

--  Author  = Tater@Area 52
--  Talents = 3, 1, 1, 3, 1, 1, 2
Sequences['TaterBeast'] = {
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]
/startattack
/petattack [@target,harm]
/cast [combat] Bestial Wrath
/cast [combat] Blood Fury
/cast [combat] Titan's Thunder
/cast [combat] Aspect of the Wild
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
/cast [mod:alt] Multi-Shot
/cast [nopet,nodead] Call Pet 1; [@pet,dead] Heart of the Phoenix
/cast [combat,pet:Spirit Beast,@player] Spirit Mend
/cast [combat,pet,@player] Roar of Sacrifice
/cast !Volley
]],
    '/cast Dire Beast',
    '/castsequence Kill Command, Cobra Shot',
    '/cast A Murder of Crows',
PostMacro = [[
/startattack
/petattack
/cast Mend Pet
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
]],
}

Is it every line? i get the same error

[quote quote=45070]Is it every line? i get the same error
[/quote]

No, end of lines 29 and 30 … but for good measure I went back and made sure to remove the extra spaces from every line.

i feel dumb ,dont see any extra spaces short of removing the comma

This was the code I posted:

   '/cast Dire Beast',
   '/castsequence Kill Command, Cobra Shot',   <--- See, 2 extra spaces here
   '/cast A Murder of Crows',

I removed the extra spaces so:

    '/cast Dire Beast',
    '/castsequence Kill Command, Cobra Shot',<--- See, same code no extra spaces
    '/cast A Murder of Crows',

it’s worth checking that all the extra spaces are removed.

there must be more elsewhere then.