Ok, so I have a room where there are some explosions going on. I want to make it so that while you are in the room, the explosions go off(intermittently, not at the same time), over and over again. I know this should be easy, but I cant find a way to do it. I tried a trigger_multiple and had it explode ontouching, but that didnt work at all. I know I must be overlooking something, there must be an easy way to do it. Help please?
Help with looping trigger
Posted Apr 22, 2008
Registered users don't see ads! Register now!
Posted Apr 22, 2008
Replied
8 minutes
later
Have each of your explosion entities setup properly in a logic_case, and then have a randomized logic_timer send a PickRandom output to the logic_case whenever you want one to explode.
Posted Apr 23, 2008
Replied
6 hours
later
FTW, dang he got it before I did!
Posted Apr 23, 2008
Replied
54 minutes
later
msleeper wrote:
Have each of your explosion entities setup properly in a logic_case, and then have a randomized logic_timer send a PickRandom output to the logic_case whenever you want one to explode.
Then, use a trigger_multiple with a OnStartTouch > logic_timer > Enable and OnEndTouch > logic_timer > Disable.
Registered users don't see ads! Register now!
Posted Apr 23, 2008
Replied
16 hours
later
Ya I was on the right track, thanks, I just didnt know that logic_timer looped. cool.