OsSetHealRate

From OpenSimulator

Revision as of 06:19, 15 April 2017 by Djphil (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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, OsGetHealth, OsCauseDamage, OsCauseHealing.

Threat Level High
Permissions No permissions specified
Extra Delay No function delay specified
Example(s)
key uuid;
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Script running");
    }
 
    touch_start(integer number)
    {
        uuid = llDetectedKey(0);
        llOwnerSay("osGetHealRate Before = " + (string)osGetHealRate(uuid));
        osSetHealRate(uuid, llFrand(1.0));
        llOwnerSay("osGetHealRate After = " + (string)osGetHealRate(uuid));
        llSetTimerEvent(5.0);
    }
 
    timer()
    {
        llSetTimerEvent(0.0);
        osSetHealRate(uuid, 0.5);
        llOwnerSay("osGetHealRate Default = " + (string)osGetHealRate(uuid));
    }
}
Personal tools
General
About This Wiki