OsGetHealth
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
m (Change See Also) |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 3: | Line 3: | ||
|permissions=true | |permissions=true | ||
|delay=0 | |delay=0 | ||
− | |function_syntax=float osGetHealth( | + | |function_syntax=float osGetHealth(key avatar) |
+ | |description=Gets an avatars health by key and returns the value as a float. | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
+ | // | ||
+ | // osGetHealth Script Example | ||
+ | // Author: djphil | ||
+ | // | ||
+ | |||
default | default | ||
{ | { | ||
− | touch(integer | + | state_entry() |
+ | { | ||
+ | llSay(PUBLIC_CHANNEL, "Touch to see osGetHealth usage."); | ||
+ | } | ||
+ | |||
+ | touch(integer number) | ||
{ | { | ||
key agentID = llDetectedKey(0); | key agentID = llDetectedKey(0); | ||
− | osCauseDamage(agentID, 50); | + | osCauseDamage(agentID, 50.0); |
− | llSay( | + | llSay(PUBLIC_CHANNEL, llKey2Name(agentID) + " has " + (string)osGetHealth(agentID) + "% health left."); |
} | } | ||
} | } | ||
</source> | </source> | ||
− | | | + | |additional_info=This function was added in 0.7.5-post-fixes |
− | + | ||
− | + | ||
− | + | ||
}} | }} | ||
+ | == See Also == | ||
+ | * [[osGetHealth]] | ||
+ | * [[osSetHealth]] | ||
+ | * [[osGetHealRate]] | ||
+ | * [[osSetHealRate]] | ||
+ | * [[OsCauseDamage]] | ||
+ | * [[OsCauseHealing]] |
Latest revision as of 18:47, 5 December 2020
float osGetHealth(key avatar)
| |
Gets an avatars health by key and returns the value as a float. | |
Threat Level | None |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // osGetHealth Script Example // Author: djphil // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osGetHealth usage."); } touch(integer number) { key agentID = llDetectedKey(0); osCauseDamage(agentID, 50.0); llSay(PUBLIC_CHANNEL, llKey2Name(agentID) + " has " + (string)osGetHealth(agentID) + "% health left."); } } | |
Notes | |
This function was added in 0.7.5-post-fixes |
[edit] See Also
- osGetHealth
- osSetHealth
- osGetHealRate
- osSetHealRate
- OsCauseDamage
- OsCauseHealing