My maxmp

From Kolmafia
Revision as of 14:51, 29 January 2009 by imported>Zarqon (more links, better example, consistent formatting, logged-out info)
Jump to navigation Jump to search

int my_maxmp()

Returns the logged-in character's maximum MP level as an int.

The following example attempts to ensure that you are able to cast Olfaction before adventuring:

 location bountylocation = $location[Hole in the Sky];
 if (my_maxmp() < mp_cost($skill[transcendant olfaction])) {
   print("You are unable to cast Olfaction.","red");
 } else {
   restore_mp(mp_cost($skill[transcendant olfaction]));
 }
 adventure(my_adventures(),bountylocation);

When not logged in, this function returns 0.