OsGetHealRate

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
Line 24: Line 24:
 
A value of zero can disable automatic heal, current maximum value is 100 % per second.<br />
 
A value of zero can disable automatic heal, current maximum value is 100 % per second.<br />
  
See also [[OsSetHealRate]], [[OsGetHealth]], [[OsCauseDamage]], [[OsCauseHealing]].
+
See also [[OsSetHealRate]].
 
|
 
|
 
}}
 
}}

Revision as of 06:49, 15 April 2017

float osGetHealRate(key avatar)
Gets an avatars health rate by key and returns the value as a float.

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 OsSetHealRate.

Threat Level None
Permissions No permissions specified
Extra Delay No function delay specified
Example(s)
//
// osGetHealth Script Exemple
//
 
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.");
    }
}
Personal tools
General
About This Wiki