You could do that like this, but since i dont know how to use the internal timer youll have to add a external timer
Code:
N@Value Changer
I@Value1 Value2 Value3 Timer
O@Value Reset
Reset = Timer >= 3
TimerInt = ceil(timer)
TimerInt == 1 -> Value = Value1;
TimerInt == 2 -> Value = Value2;
TimerInt == 3 -> Value = Value3;
Damnnn... i love e-gate

[/b]
But you need a seperate timer chip for that thing
here is another way to do it
Code:
I@Value1 Value2 Value3 ..........
O@NewValue
interval(1000)
Number+=1
Number>2 ->Number=0** # 2 is the number of values you have minus 1. "3-1=2"
NewValue=sel(Number,Value1,Value2,Value3,.........)
Replace ......... with Value 4,5,6,7 or whatever.
Each time the code is triggered, the Number will be 1 bigger, if it is higher than a certain number, it will be reverted to 0, the code then selects the desired value based on the number. Interval can still be changed.
Bookmarks