Minesweeper path with walls

Goal

Reach bottom-right to win, don't walk on mines!

Controls

  • Move with arrow keys ⬆️⬇️⬅️➡️
  • Press W then an Arrow to place a wall.
  • Press R to restart, S for different seed.
  • Click to flag a mine: just for clarity, but if it's incorrect you lose.

Settings




Scores

Difficulty 10x10 15x15 20x20
Easy 0 0 0
Medium 0 0 0
Hard 0 0 0
×

How it works / comments

  • The number of a cell indicates the number of mines in the 8 neighbor cells that are not blocked by a wall. (No number on an explored cell means 0.)

  • Walls don't block diagonal counting.

  • The game concept is that adding walls gives information but blocks your movements.

  • The information you can get after putting a wall (counter is decreased or not) is displayed automatically. That's why it shows a mine if the counter is decreased, and a "?" if it's not.

  • For some seeds the game is impossible.
© 2024 Etienne Jacob (bleuje)