Page 1 of 1
Wait Trigger
Posted: November 3rd, 2009, 3:33 pm
by TTTT
Hey guys, i just have a quick question. how do i make a trigger that waits 30 seconds untill it activates? for example one guy is in a room and when hes been in there for 30 secs he will be moved to the next one? i already know how to make a teleporter.
Re: Wait Trigger
Posted: November 3rd, 2009, 5:19 pm
by Drofder2004
You want the trigger to wait BEFORE or AFTER someone triggers it?
For example:
Player walks into room, touches trigger, then wait 30 seconds for event... or
Map starts, trigger waits for 30 seconds then turns on?
I am guessing the first one, so:
Code: Select all
trig = getent("trig","targetname");
trig waittill ("trigger");
wait 30;
//Do something here
Re: Wait Trigger
Posted: November 3rd, 2009, 8:01 pm
by TTTT
thx drofder

damn im stupid
