Skip to content

Instantly share code, notes, and snippets.

@masalt0
Created September 7, 2021 02:13
Show Gist options
  • Save masalt0/2ff203e92c9ec3565d187b26eacd428d to your computer and use it in GitHub Desktop.
Save masalt0/2ff203e92c9ec3565d187b26eacd428d to your computer and use it in GitHub Desktop.
Vanishing Maze (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
title Vanishing Maze
author ASHRY Productions
========
OBJECTS
========
background -
black
tempbg .
darkgray
win +
white
player O
green
wall #
black
portala 1
blue
portalb 2
orange
=======
LEGEND
=======
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
background
wall tempbg win portala portalb
player
======
RULES
======
[tempbg] -> []
[Player Wall] -> [wall player] restart
[player portala|...|portalb] -> [portala|...|player portalb]
==============
WINCONDITIONS
==============
all player on win
=======
LEVELS
=======
message 1 - Concept Introduction
#####
#O#+#
#...#
##.##
#####
message 2 - Zig
######
##+###
##..##
###..#
####O#
######
message 3 - First Maze
##########
##...#...#
#..#...#.#
#.#..#..##
#.##.##..#
#O####+.##
##########
message 4 - Crossline
#######
#O..#.#
#.#...#
#..#.##
##...+#
#######
message 5 - Teleportals?
########
#O.1#..#
#.###..#
#.#2..+#
########
message 6 Portal Mayhem
########
#.#..2.#
#2##1#.#
#.#.#1##
#.#O..##
#.####+#
#..1#.2#
########
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment