I have a number of instances, each has a variable called timer.
I want this variable to count down every second for each instance, so i tried,
for each object
+timer > 0
+every 1000ms > subtract 1 from timer value
But what this does is goes through the instances one at a time, rather than doing them all together.
If i remove the 'for each' condition, it now works but each instance is synchronized rather than counting down indpendantly of one another.
Is it a bug, or am i doing something wrong?
Thanks.