i'm working on my ele profile at the moment an di was finding that with this code for Earthquake
Code:
if PQR_SpellAvailable(61882) and GetCurrentKeyBoardFocus() == nil and eqkey==1 then
SilentCast(61882)
if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
return true
end
and chain lightning below it in the rotation PQR_SpellAvailable was never getting a chance to fire earthquake probably because of GCD issues and the low cast time of chain lightning.
i found setting PQR_SpellAvailableTime = 0.2 seemed to fix it for me.