Maze Game

Day 1-5

  1. BASIC GAME: Person moving, Points, Goal, Door; Controller
  2. MONSTERS LR, UD: Monsters LR, UD; Losing Lives
    + Level 1
  3. MONSTERS ALL: Monsters ALL, losing lives
    + Level 2 & 3
  4. FACING DIRECTIONS
    BOMBS
    + Level 4
  5. BLOCKS & HOLES
    + Level 5


Game overview

The player has to collect diamonds to get rid of a door blocking the goal to get to the next room. There are monsters in the room; the player only has 5 lives. Rooms may also have bombs, blocks and holes in them.


FYI: game maker variables, directions

You will be using variables such as "hspeed" (horizontal speed) and "vspeed" (vertical speed).

The Origin (0,0) of the plane is usually in the upper left corner.

  • x = positive number = to the right
  • x = negative number = to the left
  • y = positive number = down
  • y = negative number = up