My hp: Difference between revisions
Jump to navigation
Jump to search
imported>ZammyWarrior No edit summary |
imported>Bale mNo edit summary |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{ | |||
#vardefine:name|my_hp}}{{ | |||
#vardefine:return_type|int}}{{ | |||
< | FunctionPage| | ||
restore_hp( | name={{#var:name}}| | ||
} </ | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}} | |||
}}| | |||
function_description=Returns your current HP level as an int.| | |||
code1={{CodeSample| | |||
title=Code Samples| | |||
description=The following example will attempt to heal you to full health if your HP has reached 0.| | |||
code= | |||
<syntaxhighlight> | |||
if(my_hp() == 0) { | |||
restore_hp(my_maxhp()); | |||
} | |||
</syntaxhighlight> | |||
}}| | |||
see_also={{SeeAlso|my_maxhp|restore_hp}}| | |||
special=When not logged in, this function returns 0. | |||
}} | |||
[[Category:Your Character]] |
Latest revision as of 21:33, 21 May 2010
Function Syntax
int my_hp()
Returns your current HP level as an int.
Code Samples
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());
}
See Also
Special
When not logged in, this function returns 0.