Is it possible to cast every second loop GS?

I want to cast pet mend after the macro cycles twice. Is this possible? When I do it every cycle, it’s a dps loss for me.

Thanks

Nope. Better to cast this manually.

I’m too lazy… I’ll take the DPS loss

Yes - With GSE - Use an internal loop macro

...
loopstop=2,
looplimit=2,
...
"/cast Spell 1",
"/cast spell 2",
"/cast Pet Mend",
...

This will do cast 1, cast 2, cast 1, cast 2, Pet Mend

Very nice

Hi Tim, would it be possible to do it via a timer instead?

It seems being able to construct a loop with a time based end instead of a count based end would allow a great deal of enhanced options.


...
loopstop=2,
looptime=10,
...
"/cast Spell 1",
"/cast spell 2",
"/cast Pet Mend",
...

ie: the loop runs for 10 seconds then drops to the Mend.

Tim,

Your tips have proven very helpful. Thank you!

does it work with time? that would be awesome