Page 1 of 1

Detecting number of spell slots

Posted: Thu Jun 05, 2008 3:54 pm
by gimp
Hi all.
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
}

Posted: Thu Jun 05, 2008 5:49 pm
by mystikule

Code: Select all

  /if (${Me.AltAbility[Mnemonic Retention]}==3) /varset SpellSlots 9
  /if (${Me.AltAbility[Mnemonic Retention]}==9) /varset SpellSlots 10
The numbers are to the best of memory. This is more accurate, vs assuming the character has them because they are high enough level to buy them.

Posted: Fri Jun 06, 2008 4:16 am
by gimp
thanks, that was a cleaner way to check it :)

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 6:59 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:00 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:02 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:03 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:04 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:05 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:06 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:43 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:44 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:46 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:47 pm
by xyilla

Re: Detecting number of spell slots

Posted: Thu Aug 28, 2025 7:48 pm
by xyilla