Okay, I had an idea for a map which I was sure would work but alas it isn't working quite the way I wanted it to.
Basically the premise of the map is players start in Room 1, when they spawn it says a hud message for them "Room 1", 20 seconds later a door opens leading to room 2, if they don't enter room 2 before the door shuts then they are killed in room 1. If they enter room 2 they get a hud message saying room 2, etc.
This is how I set it up:
CT spawn has a trigger_multiple which triggers a multi_manager (room1mm1). The multi_manager triggers a game_text (for the room 1 hud message) in 0 seconds and also the room 1 door in 20 seconds. There is also a trigger_hurt named room1kill and has the flag Start Off. When room1door closes I have it set to Fire on close to trigger the trigger_hurt room1kill.
Now, room 2 has all these exact same entities: and same settings
trigger_multiple = targets multi_manager (room2mm1)
multi_manager (room2mm1) = triggers game_text in 0 seconds (room2text) and room 2 door in 20 seconds (room2door)
func_door (room2door) = triggers trigger_hurt (room2kill) with fire on close
trigger_hurt (room2kill) = has the Start Off flag.
Blah, sorry for all that haha. Hopefully I explained that correctly.
Anyways, the problem is when I don't make room 2 in time, I am killed by the room 1 trigger_hurt nicely, but when I spawn the next round, if I try to enter room 2 normally, I am killed by its trigger_hurt right away. Why is this? Nothing should have activated it the previous round and nothing should have activated it this round either. It is only turned on by the room 2 door when it closes and that hasn't happened yet. I checked a million times each setting of the entities and they're all set correctly.
Anyone know why this would be happening?
Thanks!