Difference between revisions of "LlResetTime"

From Second Life Wiki
Jump to navigation Jump to search
Line 23: Line 23:
</pre>
</pre>
|helpers
|helpers
|also_functions=*{{LSLG|llGetTime}}
|also_functions={{LSL DefineRow||[[llGetTime]]|}}
*{{LSLG|llGetAndResetTime}}
{{LSL DefineRow||[[llGetAndResetTime]]|}}
|also
|also
|notes
|notes
|cat1=Time
|cat1=Time
|cat2
|cat2=Script
|cat3
|cat3
|cat4
|cat4
}}
}}

Revision as of 20:05, 1 March 2007

Summary

Function: llResetTime( );

Sets the script's running time to zero.

Caveats

  • Note that this time can be set to zero by editing the script, resetting the script, a sim reset, etc.
    • Not reliable for long term monitoring of a script's run time.
All Issues ~ Search JIRA for related Bugs

Examples

default {
    state_entry()
    {
        llResetTime();
    }
    touch_start(integer num_touch)
    {
        float time;
        time=llGetTime(); //Instead getting, and then resetting the time, we could use llGetAndReset() to accomplish the same thing.
        llResetTime();
        llSay(0,(string)time + " seconds have elapsed since the last touch." );
    }
}

See Also

Functions

•  llGetTime
•  llGetAndResetTime

Deep Notes

Search JIRA for related Issues

Signature

function void llResetTime();