OsSetHealth
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
m (Added note stating which version of OpenSim introduced this function) |
||
Line 18: | Line 18: | ||
See also [[osGetHealth]], [[OsCauseDamage]], [[OsCauseHealing]]. | See also [[osGetHealth]], [[OsCauseDamage]], [[OsCauseHealing]]. | ||
− | | | + | |additional_info=This function was added in 0.9.0-post-fixes |
}} | }} |
Revision as of 09:55, 15 October 2018
void osSetHealth(string avatar, float health)
| |
Sets an avatars health by key to the specified float value.
See also osGetHealth, OsCauseDamage, OsCauseHealing. | |
Threat Level | High |
Permissions | ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
default { touch(integer t) { key agentID = llDetectedKey(0); osSetHealth(agentID, 50); llSay(0, llKey2Name(agentID) + " has " + (string)osGetHealth(agentID) + "% health left."); } } | |
Notes | |
This function was added in 0.9.0-post-fixes |