Buried in Time: The Journeyman Project 2 Hints

What's the code in the AI Nexus?

  • 1 of 11: Well, it's really not a code so much as a game.
  • 2 of 11: Any time you click on a light, it will move one space or jump over one and only one light of the opposite color.
  • 3 of 11: Red lights can only move down, and green lights can only move up.
  • 4 of 11: A bit of logic combined with trial and error should make this puzzle fairly easy to solve.
  • 5 of 11: Of course, since you can't jump over two dots, you never want to move into a position that makes two dots of the same color adjacent to one another.
  • 6 of 11: That means you more or less need to try to get the dots into an alternating pattern.
  • 7 of 11: Read ahead if you want to know what one answer to this puzzle is.
  • 8 of 11: I'll use R for red lights, and G for green lights.  The numbers say which dot of the three (counting from the top) to move.  So G3 is the bottom of the green dots and R1 is the top of the red dots, for example.
  • 9 of 11: Start out R3, G1, G2, R3.
  • 10 of 11: Then R2, R1, G1, G2.
  • 11 of 11: Finally, G3, R3, R2, R1.