LlResetTime
From Second Life Wiki
| Languages: |
English • Deutsch • Español • ελληνικά • Français • עברית • Italiano • 日本語 • 한국어 • Nederlands • Magyar • Norsk • Dansk • Svenska • Türkçe • Polski • Português • Русский • украї́нська • 中文(简体) • 中文(繁體) |
| Volunteer translated pages are linked in blue, Google translated pages are linked in grey. Learn how to provide volunteer translations. | |
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Summary
Function: llResetTime( );| 83 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Resets the script-time timer to zero.
Caveats
- Script time resets when...
- Script reset (user or llResetScript or llResetOtherScript)
- Simulator reset (admin or crash)
- Call to either llResetTime or llGetAndResetTime
Examples
default { state_entry() { llResetTime(); } touch_start(integer num_touch) { float 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." ); } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

