Niborius on 26/5/2018 at 09:56
Hi :)
This is a question for Thief 2 NewDark 1.25's Dromed.
I'm guessing this should be fairly simple but I couldn't find an answer on the forums so I figured I'd ask it. Basically I have a few doors set up with door_combo so that they open when a certain combination of number buttons have been pressed, but I want them to remain open forever once the right code is pressed, even when a new code is pressed afterwards.
I played around with trap control flags but no luck so far. Any ideas?
Unna Oertdottir on 26/5/2018 at 10:25
Remove the link after opening the door. Conversation or custom script.
R Soul on 26/5/2018 at 10:29
The QuestVarTrigger sends a TurnOn message when the QVar condition becomes true, and TurnOff if it becomes false. Give your QuestVarTrigger a CD link to a RelayTrap, and give that CD links to the door(s). On the RelayTrap, add TrapControlFlags: NoOff.
Niborius on 26/5/2018 at 11:06
Quote Posted by R Soul
The QuestVarTrigger sends a TurnOn message when the QVar condition becomes true, and TurnOff if it becomes false. Give your QuestVarTrigger a CD link to a RelayTrap, and give that CD links to the door(s). On the RelayTrap, add TrapControlFlags: NoOff.
That makes complete sense, and it works perfectly. I was very close to the solution myself but forgot a few steps.
Thank you a lot!