Difference between revisions of "My mp"

From Kolmafia
Jump to navigation Jump to search
imported>Efilnikufecin
(Only returns current mp level)
imported>Zarqon
(more links, consistent formatting, logged-out info)
Line 1: Line 1:
'''int my_mp()'''<br/>
+
[[int]] [[my_mp()]]
Returns your current MP level
+
 
 +
Returns your current MP level as an [[int]].
 +
 
 +
The following example will attempt to restore you to full MP when your MP reaches 0.
 +
 
 +
<code>
 +
  if ([[my_mp()]] == 0) {
 +
    [[restore_mp()|restore_mp]]([[my_maxmp()]]);
 +
  }
 +
</code>
 
[[Category:Your Character | My mp()]]
 
[[Category:Your Character | My mp()]]
 
[[Category:Ash Functions |My mp()]]
 
[[Category:Ash Functions |My mp()]]
<pre>if(my_mp() == 0){
+
 
restore_mp(mymax_mp());
+
When not logged in, this function returns 0.
} </pre>
 

Revision as of 14:37, 29 January 2009

int my_mp()

Returns your current MP level as an int.

The following example will attempt to restore you to full MP when your MP reaches 0.

 if (my_mp() == 0) {
   restore_mp(my_maxmp());
 }

When not logged in, this function returns 0.