Difference between revisions of "My hp"

From Kolmafia
Jump to navigation Jump to search
imported>ZammyWarrior
imported>Zarqon
(more links, consistent formatting, logged-out info)
Line 1: Line 1:
'''int my_hp()'''<br/>
+
[[int]] [[my_hp()]]
Returns your current HP level
+
 
 +
Returns your current HP level as an [[int]].
 +
 
 +
The following example will attempt to heal you to full health if your HP has reached 0.
 +
 
 +
<code>
 +
  if ([[my_hp()]] == 0) {
 +
    [[restore_hp()|restore_hp]]([[my_maxhp()]]);
 +
  }
 +
</code>
 
[[Category:Your Character | My hp()]]
 
[[Category:Your Character | My hp()]]
 
[[Category:Ash Functions |My hp()]]
 
[[Category:Ash Functions |My hp()]]
  
<pre>if(my_hp() == 0){
+
When not logged in, this function returns 0.
restore_hp(mymax_hp());
 
} </pre>
 

Revision as of 14:35, 29 January 2009

int my_hp()

Returns your current HP level as an int.

The following example will attempt to heal you to full health if your HP has reached 0.

 if (my_hp() == 0) {
   restore_hp(my_maxhp());
 }

When not logged in, this function returns 0.