Simple S2M casting macro

Iv looked around and made some macros using the in game addon but its not doing exactly what i am looking for it to do.

I want a button to cycle through 4 different abilities and not move on to the next one in the sequence tell the current ability gets cast.

what i currently have is:

Sequences['test1'] = {
author="Barten",
specID=0,
version=18,
source = "Local",
helpTxt = "Talents: 1212213",
icon='INV_MISC_QUESTIONMARK',
lang="enUS",
PreMacro=[[
/targetenemy [noharm][dead]
]],
"/cast Void Eruption",
"/cast Mind Blast",
"/cast Void Eruption",
"/cast Mind Flay",
PostMacro=[[
]],
}

With every button press it jumps to the next ability (i think thats the addons orginal intention), but what i want is it to stay on the ability if it dosnt get cast and only move on if it successfully cast the current ability it is on.

Any ideas?

Change the multiple /cast to one line like so,
“/castsequence Void Eruption, Mind Blast, Void Eruption, Mind Flay”,

This macro might help. Worth a try anyway. :slight_smile:

[quote quote=37739]Change the multiple /cast to one line like so, “/castsequence Void Eruption, Mind Blast, Void Eruption, Mind Flay”,
[/quote]

So i have done that, and it hangs on the 2nd Void Eruption/Void Bolt. (Void Erpution Turns into Void Bolt)

It will go, Void Eruption/Void Bolt->Mind Blast->Void Bolt and then stay on Void Bolt and never let me do Mind Flay.

[quote quote=37740]This macro might help. Worth a try anyway. ???
[/quote]

I have tried that before, but i dont want it to necessarily cast “Mind Bender” on CD, i want to time that later in my S2M.

FYI: The latest version checks to see if you have selected the Mindbender talent; and if so, allows you to cast it using the ALT key modifier … this should give you the control you desire. I recommend giving it another try … just to see. :wink:

[quote quote=37768]

I have tried that before, but i dont want it to necessarily cast “Mind Bender” on CD, i want to time that later in my S2M.

FYI: The latest version checks to see if you have selected the Mindbender talent; and if so, allows you to cast it using the ALT key modifier … this should give you the control you desire. I recommend giving it another try … just to see. ???? [/quote]

All i need is 1 macro for Void Bolt-> Mind Blast -> Void Bolt -> Mind Flay, then resets. Need it to not Skip a spell in the rotation tell it is cast.

Given that the CD on MB is double that of VB, your castsequence should essentially be 2:1 (VB:MB); MF is simply a filler and could be clipped I presume. If that is the case, I would try something like this:

EDIT: apparently this does NOT work. :frowning:
/castsequence reset=9 Void Eruption, Mind Blast, Void Eruption
/cast [nochanneling] Mind Flay

NOTE: The reset=9 is based on the default CD for MB > with no haste bonuses. Obviously, your CD time will be lower than this. Feel free to substitute the 9 with the CD time indicated in your spell book.