MechCube is not only a set of extraordinary puzzles and tricky riddles. This is a non-linear game in point-and-click adventure genre with a lot of endings, secrets, easter eggs and references to modern pop culture. Here is a guide to go through the game, you can find all complete endings with this guide.
Mech Cube: Escape walkthrough Room 1-11
MechCube: Escape 10 Items & 5 Endings
Features of the MechCube: Escape
π First of all, it’s a set of peculiar, extraordinary and sometimes incredibly tricky riddles and puzzles. To solve them, you need not only logic and attention to details, but also the ability to think outside the box
π This is a non-linear point-and-click adventure. You can go in any direction and solve puzzles in any order
π Terrible traps and exciting feeling of meeting with the unknown
π Try to find all the endings and collectibles hidden in this game
π Secret levels, easter eggs and an lots of references to modern pop culture
π Stuck? No problem! A built-in hint system will help in a difficult situation
π Awesome atmosphere created by hand-drawn graphics and a deep soundtrack
π No casual match-3 puzzles, just logical problems and thinking outside the box
π No time limits, you can play offline
π Amazing graphics optimized for tablets and smartphones
π Boost your brain power in this colorful adventure full of secrets and mysteries!
π What you’re waiting for? Start solving puzzles right now!
%room14MatlabSolver
% 0 = R, 1 = G, 2 = B.
A = [1 1 0 1 0 0 0 0 0; …
1 1 1 0 1 0 0 0 0; …
0 1 1 0 0 1 0 0 0; …
1 0 0 1 1 0 1 0 0; …
0 1 0 1 1 1 0 1 0; …
0 0 1 0 1 1 0 0 1; …
0 0 0 1 0 0 1 1 0; …
0 0 0 0 1 0 1 1 1; …
0 0 0 0 0 1 0 1 1];
P = [0; 0; 0; 1; 1; 1; 2; 2; 2];
%C is the initial condition
C = [0; 2; 1; 1; 0; 2; 2; 0; 1];
%is
% R B G
% G R B
% B R G
%Inicializing N
N = rand(9,1);
while sum(mod(N,1)) > 0
K = randi([0 2],9,1);
N = (A*K + C – P)/3;
disp(num2str(K’))
end
%Result for this initial condition is
%k = 0 1 1 2 2 0 2 2 2
%It meens that we need to taouch
% 0 1 1
% 2 2 0
% 2 2 2