LlSetTimerEvent

From Second Life Wiki

Second Life Wiki > LSL Portal > Built-in Functions > LlSetTimerEvent (Redirected from LSL llSetTimerEvent)
Jump to: navigation, search

Template:Needs Translation/LSL/es Template:Needs Translation/LSL/el Template:Needs Translation/LSL/he Template:Needs Translation/LSL/it Template:Needs Translation/LSL/nl Template:Needs Translation/LSL/hu Template:Needs Translation/LSL/no Template:Needs Translation/LSL/da Template:Needs Translation/LSL/sv Template:Needs Translation/LSL/tr Template:Needs Translation/LSL/pl Template:Needs Translation/LSL/pt Template:Needs Translation/LSL/ru Template:Needs Translation/LSL/uk Template:Needs Translation/LSL/zh-Hans Template:Needs Translation/LSL/zh-Hant

Contents

Summary

Function: llSetTimerEvent( float sec );
107 Function ID
0.0 Delay
10.0 Energy

Cause the timer event to be triggered a maximum of once every sec seconds. Passing in 0.0 stops further timer events.

• float sec Any positive non-zero value to enable, zero (0.0) to disable.

Caveats

  • The time between timer events can be longer, this is caused by:
    • Time dilation - See llGetRegionTimeDilation for more information.
    • Default event delay - Only so many events can be triggered per second.
    • Event Execution - If the execution of an event takes too long.
  • The timer persists across state changes, but gets removed when the script is reset

Search JIRA for related Bugs

Examples

float gap = 2.0;
integer counter = 0;
 
default
{
    state_entry()
    {
        // Activate the timer listener every 2 seconds
        llSetTimerEvent(gap);
        llResetTime();
    }
 
    touch_start(integer total_number)
    {
        llSay(0, "The timer stops.");
        llSetTimerEvent(0);
        counter = 0;
    }
 
    timer()
    {
        ++counter; 
        llSay(0, (string)counter+" ticks have passed in " + (string)llGetTime() 
                 + " script seconds.\nEstimated elapsed time: " + (string)(counter * gap));
    }
}

See Also

Events

•  timer

Functions

•  llSensorRepeat
•  llGetRegionTimeDilation
•  llGetTime

Deep Notes

This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.
Personal tools