Author Topic: Door that only opens when two or more specific people open it  (Read 670 times)


Adding another retroCheck will just make it check both at the same time.

Use a chain of VCE_if... checks (through onVariableFalse)?

Code: [Select]
[✓ 0] [0] onActivate > Self > VCE_retroCheck > ifPlayerID == [35280] [1 1]
[✓ 1] [0] onVariableTrue > Self > VCE_retroCheck > ifPlayerID == [12345] [2 2]
[✓ 2] [0] onVariableTrue > Self > door > OpenCW
[✓ 3] [3500] onDoorOpen > Self > door > Close

Err. No edit.

Code: [Select]
[✓ 0] [0] onActivate > Self > VCE_retroCheck > ifPlayerID == [35280] [1 2]
[✓ 1] [0] onVariableFalse > Self > VCE_retroCheck > ifPlayerID == [12345] [2 2]
[✓ 2] [0] onVariableTrue > Self > door > OpenCW
[✓ 3] [3500] onDoorOpen > Self > door > Close