All pastes #2062413 Raw Edit

Mine

public text v1 · immutable
#2062413 ·published 2011-05-17 12:42 UTC
rendered paste body
integer tick = 1;

default
{
    state_entry()
    {
        llSetTimerEvent(0.2);
    }
    
    timer()
    {
        tick++;
        llSetText("Tick-tack " + (string)tick, <llFrand(1), llFrand(1), llFrand(1)>, 1);
    }

}