Author Topic: Looping Events  (Read 648 times)

How can I make a loop in events?

do this:
0 on activate (input of something) > self > fire relay
0 on relay > do looping events (have your events start with relays)
after some time: on relay > self > fire relay

Code: [Select]
0 onActivate Self fireRelay
50 onRelay Self spawnExplosion TankShell ----------|- 2

Why people put events in text as (for example) "on activate" like that is beyond me.

do this:
0 on activate (input of something) > self > fire relay
0 on relay > do looping events (have your events start with relays)
after some time: on relay > self > fire relay
  Oh yeah! Thankyou! I was trying to use on variable with a relay that makes another brick send a relay back and start at the beggining again. But this way easier thanks.