I understand that this level is similar to the previous one (“Fragile Maze”). But even here, I don’t know where to start. We’re supposed to navigate through the maze and save the coordinates of places we’ve been to. But how are we then supposed to pick up the treasure? The source code is below: @dedreous @AnSeDra
// Find the treasure inside the maze.
// When you get the treasure, move to the exit.
// The exit is marked by the red cross. The level ends when you step on the mark.
// Some doors are blocked, some open when you are near them.
var exitPosition = {x: 150, y: 120};
var distanceBetweenRooms = 16;
var zeroShift = {x: 10, y: 10};