Help with Moonfire

Hello guys, I’m super new to GSE.
I’m trying to make a simple macro for my Guardian Druid: use Maul if available, otherwise use Mangle, otherwise Moonfire.

I made 3 action blocks, one for each spell, but Moonfire is being cast even if the other two are available.
Watching some videos on Youtube I though I needed to use a Priority List, rather than a simple Sequence, but I can’t seem to find that option in the current version of GSE.

How could I achieve that (if possible)?

Thanks in advance!

The first thing is priority is GSE isn’t true priority but mathematical probability. It tries action 2 3 times more than it tries action 3. It can and does still work out that it will tune it just so to use action 3 instead of 1or2buts just the luck part.

To do this create a loop and then move these three actions inside of it.

More detail: GSE3: Advanced Loop Step Functions Priority and Reverse Priority · TimothyLuke/GSE-Advanced-Macro-Compiler Wiki · GitHub

1 Like

Ohhh I see, that actually clears up a lot of things.
Thanks a lot TimothyLuke!