I struggled with a macro where I needed to know the number of spell slots available but couldn't figure out how to see what level of the AA Mnemonic Retention the character had, so I came up with this solution
Hope it helps someone.
PS if you have a better solution please post it here ^^
Code: Select all
/declare max int local 8
/if (${Me.AltAbilityReady["Mnemonic Retention"]}) {
/if (${AltAbility["Mnemonic Retention"].MinLevel} == 55) /varset max 9
/if (${AltAbility["Mnemonic Retention"].MinLevel} == 75) /varset max 10
}

