Difference between revisions of "LlSetTimerEvent"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 9: Line 9:
*The time dilation increases the length of the interval between [[timer]] event triggers. See [[llGetRegionTimeDilation]] for more information.
*The time dilation increases the length of the interval between [[timer]] event triggers. See [[llGetRegionTimeDilation]] for more information.
|constants
|constants
|examples=<pre>
|examples=<lsl>float gap = 2.0;
float gap = 2.0;
integer counter = 0;
integer counter = 0;


Line 35: Line 34:
         llSay(0, (string)counter+" ticks have passed in " + (string)llGetTime() + " script seconds. Estimated time should be " + (string)(counter * gap));
         llSay(0, (string)counter+" ticks have passed in " + (string)llGetTime() + " script seconds. Estimated time should be " + (string)(counter * gap));
     }
     }
}
}</lsl>
</pre>
|helpers
|helpers
|also_functions=
|also_functions=

Revision as of 07:56, 3 February 2008

Summary

Function: llSetTimerEvent( float sec );

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

• float sec Any positive non-zero value.

Caveats

All Issues ~ Search JIRA for related Bugs

Examples

<lsl>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);
       
   }
   timer()
   {
       ++counter; 
       llSay(0, (string)counter+" ticks have passed in " + (string)llGetTime() + " script seconds. Estimated time should be " + (string)(counter * gap));
   }
}</lsl>

See Also

Events

•  timer

Functions

•  llSensorRepeat
•  llGetRegionTimeDilation
•  llGetTime

Deep Notes

Search JIRA for related Issues

Signature

function void llSetTimerEvent( float sec );