Skip to content

Instantly share code, notes, and snippets.

@jminor
Created June 3, 2022 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jminor/01ae5825e13bc712bdf439f4a65229e6 to your computer and use it in GitHub Desktop.
Save jminor/01ae5825e13bc712bdf439f4a65229e6 to your computer and use it in GitHub Desktop.
Maze Backtracker (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
title Maze Backtracker
author Joshua Minor based on mxgmn's MarkovJunior
homepage www.puzzlescript.net
realtime_interval 0.01
========
OBJECTS
========
Background
black
White
white
Wall
grey
Player
red
Player2
orange
Green
green
=======
LEGEND
=======
. = Background
# = Wall
P = Player
2 = Player2
W = White
G = Green
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
Background
Wall, Player, Player2, White, Green
======
RULES
======
random [ Player | . | . ] -> [ Green | Green | Player2 ]
random [ Player2 | . | . ] -> [ Green | Green | Player2 ]
random [ Player | Green | Green ] -> [ White | White | Player ]
late [ Player2 ] -> [ Player ]
==============
WINCONDITIONS
==============
no Player
=======
LEVELS
=======
###########################
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#............P............#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
#.........................#
###########################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment