LlResetTime
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: llResetTime( );| 83 | Function ID |
| 0.0 | Forced 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
- Script time measures real world time, it is unaffected by time dilation.
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.

