Mine
public text v1 · immutableinteger tick = 1;
default
{
state_entry()
{
llSetTimerEvent(0.2);
}
timer()
{
tick++;
llSetText("Tick-tack " + (string)tick, <llFrand(1), llFrand(1), llFrand(1)>, 1);
}
}