Page 1 of 1

Automaticly opening and closing Doors

Posted: Sat Jun 16, 2012 11:15 pm
by VanilleOD
Long tome no see here, I'm on to refresh my first map and I wanna add a door that does the following:

0:00 closed
1:00 Open
1:05 close
2:00 Open
2:05 close
3:00 Open
...

I tried it with 2 target_delays to a target_relay, but they startet retriggering themselfes so the door just opened/closed after 5sec already.

Re: Automaticly opening and closing Doors

Posted: Mon Jun 18, 2012 2:07 pm
by VanilleOD
Nevermind. Close. xD

Re: Automaticly opening and closing Doors

Posted: Mon Jun 18, 2012 2:16 pm
by DagF

Code: Select all

Trigger_always:
        target: t1

Trigger_delay:
        wait: 60
        targetname: t1
        target: t2

Trigger_relay
        targetname: t2
        target: t1

Trigger_relay
        targetname: t2
        target: doors

Trigger_delay
        targetname: t2
        wait: 5
        target: doors


That works. uploading a test map now ;) I know its a bit late but coudlent do it before now

Re: Automaticly opening and closing Doors

Posted: Mon Jun 18, 2012 3:36 pm
by VanilleOD
Cool thanks, my version works already pretty nice, but ill try that one too ;)