Was on a mount, it's outdoor zone, but it's never done this before. I been using KISS for over a year and never seen this happen
Here try this. Find the CastMem sub and make the following change:
From:
Code:
/if ((${Attacking} && ${MainAssist.Equal[${Me}]}) || (${HealsOn} && ${AggroTargetID} && ${sentFrom.NotEqual[Heal]} && !${Me.Mount.ID})) {
/echo Cannot mem a spell durring combat or while you have aggro.
/return notready
}
TO:
Code:
/if ((${Attacking} && ${MainAssist.Equal[${Me}]}) || (${HealsOn} && ${AggroTargetID} && ${sentFrom.NotEqual[Heal]})) {
/echo Cannot mem a spell durring combat or while you have aggro.
/return notready
}
See if that helps.

