Log In  

Hi pico-8-enthusiasts!

Here is our first game for the Fantasy console, picomaze, obviously inspired by midimaze, the Atari ST game from the 90s.

How to play:

Kill 3 smileys to win. Hit Reset to start a new game.

Cart #34018 | 2016-12-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Let us know what you think using our blog or our Twitter account!

It can be improved, feel free to contribute on github.

P#34019 2016-12-23 04:51 ( Edited 2016-12-23 10:37)

oil on the walls:

  -- collision test!!!
  local what=false
  if (mz(sm.x+dx*3, sm.y) > sm.z - 0.4) then
    sm.x=sm.x+dx
    what=true
  end
  if (mz(sm.x, sm.y+dy*3) > sm.z - 0.4) then
    sm.y=sm.y+dy
    what=true
  end
  return what
P#34020 2016-12-23 05:37 ( Edited 2016-12-23 10:37)

[Please log in to post a comment]