Solution: Mortal Snake
Answer: RANINTO

Written by Ryan Thomas

Although the puzzle is titled “Mortal Snake,” solvers are given a game titled “Immortal Snake.” Solvers should realize that it’s impossible to get a game over.

The snake will automatically change its direction if it would run into an obstacle and die.1

If the snake would get a game over moving in any direction, a pause screen will load that can’t be unpaused: permanently softlocking the game.2 Because the game over screen never appears, the snake never technically dies and is therefore immortal.

On the leaderboard, the initials of the bottom 9 players’ gamer handles spell out “GIT GUD THEN TRY AGAIN” (read horizontally, top to bottom), encouraging solvers to look at the gamer handles of players higher on the leaderboard.

If players get the high score on the leaderboard, they’ll see the gamer handles of the top 9 players are alliterative. Reading the first letter of each username gives “OUROBOROS.”

In the game, players must form an ouroboros, i.e. the snake must eat its own tail. To do this, the snake must eat a pellet on one frame (causing the tail to stay in place), then move the head on top of its tail on the next frame. Example below:

When the snake eats its own tail, the game crashes and an error screen pops up warning that a “fatal error occured.”

When the program reboots, there is now a version number next to the title. There are obstacles are strewn across the game board and a vibrating blue pellet is on the right. The snake doesn’t start moving automatically and can't be controlled with player input. Thankfully, our snake is still immortal and will never run into a wall or itself. Players must guide the snake to form an ouroboros using the vibrating objects on the right side of the game board. Crashing the game and loads a new version of the game.

The solutions to each level can be found here.

Once solvers crash the game 9 times, the patch notes will say that immortality has been removed from the game. The title of the game is now “Mortal Snake,” i.e. the name of the puzzle. The snake can now die; and when it does, solvers can see the game over screen for the first time. Regardless of how the snake dies, a portion of the phrase describing how they died will be written in red (a color used nowhere else in the game). This phase, RAN INTO, is the final answer.


  1. When encountering an obstacle, the snake will automatically move following in a zigzag pattern based on the last turn it made. If a snake can’t follow the zigzag pattern, it’ll dodges in the opposite direction. For example, the snake’s default direction is east-south. If the snake is allowed to move on an empty border, it’ll turn south. When it reaches the bottom right hand corner, it tries to turn east but is unable, so it turns west, setting its direction to west-south. Likewise, when it reaches the bottom left hand corner, it tries to turn south but is unable, so it turns north, setting its direction to west-north. 

  2. This is a reference to the Tetris AI that does something similar when it is about to lose. 


Author’s Notes

I started writing the basic code for a variant snake game in March 2020 but never landed on a specific mechanic. I decided a puzzle game that gives the answer to solvers when the game is complete would be best for “RAN INTO” because it’s a fragment sentence, which is unusual for answers. The answer also gave the game’s mechanic: the solution was to run into something, so the problem was that the game forbade you from running into anything!

I put several hotkeys in the game to help debug it faster that I left in the final game. Namely "Z" maxes the snake's speed. "ESC" can be used to exit every screen, including the error screen. Performing the Konami code (using the spacebar for "start") on the main menu will restart the game. Several teams complained that they couldn't restart or review previous levels, but this was intentional! You never need to go backwards in game to solve the puzzle, so I purposefully made it difficult to guide solvers to keep looking forward.

Several teams got stuck when they got to "Mortal Snake." Originally there was flavor text saying "Submit anything written in red!" but this flavor text was ultimately removed because it was very unaesthetic. Most teams got the answer without flavor text, so I think it was the right that.

Here's a video of me getting a perfect score of 97 on Mortal Snake.

Also, shout out to Brackeys! I’ve never made a full-fledged game in Unity before, and this YouTube channel was an invaluable resource.