OsGetHealth
From OpenSimulator
(Difference between revisions)
TBGRenfold (Talk | contribs) |
TBGRenfold (Talk | contribs) m |
||
Line 15: | Line 15: | ||
|description=Gets an avatars health by key and returns the value as a float. | |description=Gets an avatars health by key and returns the value as a float. | ||
− | See also [[OsCauseDamage]], [[OsCauseHealing]] | + | See also [[OsCauseDamage]], [[OsCauseHealing]]. |
| | | | ||
}} | }} |
Revision as of 06:47, 24 August 2012
float osGetHealth(string avatar)
| |
Gets an avatars health by key and returns the value as a float.
See also OsCauseDamage, OsCauseHealing. | |
Threat Level | None |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
default { touch(integer t) { key agentID = llDetectedKey(0); osCauseDamage(agentID, 50); llSay(0, llKey2Name(agentID) + " has " + (string)osGetHealth(agentID) + "% health left."); } } |