How to solve it

Login with the details on the back of the IDCard: User “MIKE” and Password “MRDOC”. Access the computer and unlock the lockers

How it works

When the player interacts with the computer this starts the choice Computer/Choice.

When the player chooses to operated the computer this restarts the ComputerLoginUI puzzle , activates the closeup and changes the screen material to indicate the computer has been turned on.

image.png

The MultiSequencePuzzle component contains 2 different puzzles and won’t be considered solved until both have been solved correctly. These 2 puzzles are: UserPuzzle and PasswordPuzzle.

When the MultiSequencePuzzle hasn’t been solved it’ll simply activates the first puzzle, in this case the UserPuzzle, which activates an Interaction3DContext. This is the virtual keyboard where the player will enter the user name and password.

image.png

Each of these puzzles are simple SequencePuzzle which expect different entries in a specific order. For example, UserPuzzle expects the username as a solution

image.png

The entries to the puzzle are provided by each of the keys in ComputerKeyboardUI. Each key play a sound and calles MultiSequencePuzzle.Add with the key code, which gets propagated to the active puzzle.

image.png

When both puzzles are solved UserPuzzle and PasswordPuzzle (and MultiSequencePuzzle in consequence) then ComputerLoginUI/Canvas/LoggedIn and the Interaction3DContext SelectionList is activated to select one of the lockers from the list.

image.png

Inside LoggedIn/SelectionPanel/Panel/ there are 3 interactives: Selection1, Selection2 and Selection3 which will open each of the different lockers if selected.

When selected, they simple enable a new interaction in the locker.