That Rnd effect for the cone looks faulty. It's like it stays at a certain position by default and jumps when it reaches a new random position. It's probably caused by the expressions window being open, see if just closing the expressions window fixes it.
This expression is a bit like the one you want to achieve:
Code:
steps = 10;
if(above(prevt, etime), assign(i, 0), 0);
if(above(etime, i/steps),
assign(a,rand(1000)/1000)
& assign(i, i+1)
,0);
prevt = etime;
result=a
The same effect but damped (smoothed):
Code:
setdamp(1,10,maton);
steps = 10;
if(above(prevt, etime), assign(i, 0), 0);
if(above(etime, i/steps),
assign(a,rand(1000)/1000)
& assign(i, i+1)
,0);
prevt = etime;
result=damp(a,maton)