OsSetHealRate

From OpenSimulator

Revision as of 07:28, 7 November 2019 by Djphil (Talk | contribs)

Jump to: navigation, search
float osSetHealRate(key avatar, float healrate)
Sets the automatic healing rate in % per second.

Default heal rate is now around 0.5% per second.
A value of zero can disable automatic heal, current maximum value is 100 % per second.

See also OsGetHealRate.

Threat Level High
Permissions ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
Extra Delay 0 seconds
Example(s)
//
// osSetHealth Script Example
//
 
default
{
    state_entry()
    {
        key uuid = llGetOwner();
        osSetHealRate(uuid, 10.0);
        osCauseDamage(uuid, 50.0);
        llOwnerSay("osGetHealRate = " + (string)osGetHealRate(uuid));
        llOwnerSay(llKey2Name(uuid) + " has " + (string)osGetHealth(uuid) + "% health left.");
    }
}
Notes
This function was added in 0.9.0.1
Personal tools
General
About This Wiki