Help with Macro Steady shot - Aim Shot

Hello Everyone,

I would like to know if it is possible to have a macro that will cast steady shot if Aimshot is on CD or not enough Focus availble for it to cast. Basically if Aimshot is not castable at the moment, cast steady shot.
1 button just alternating between the 2 spells.

This is pretty lazy, ngl. I suppose that’s what the site is called.

Priority, loop 1

/cast Aimed Shot
/cast Steady Shot

What Shirk said, but just beware Priority loops are very good at trying the first ability first, but technically they are not a true priority order, rather it is a probabilistic implementation. You will find that Steady Shot fires when Aimed Shot is available, I would guess ~ 20% of the time.

It’s described here: Home · TimothyLuke/GSE-Advanced-Macro-Compiler Wiki · GitHub

I think it hinges on how closely you match your current GCD to your click rate.

1 Like

A priority of
/cast Aimed Shot
/cast Steady Shot

Is same as a sequence of
/cast Aimed Shot
/cast Aimed Shot
/cast Steady Shot

Gives more chance of Aimed Shot firing but not a sure thing.