Skip to content

Instantly share code, notes, and snippets.

@bvoq
Created March 12, 2019 18:58
Show Gist options
  • Save bvoq/e7a04be81166eb2d51ebd4a91b26f600 to your computer and use it in GitHub Desktop.
Save bvoq/e7a04be81166eb2d51ebd4a91b26f600 to your computer and use it in GitHub Desktop.
My Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
title My Game
author Anonymous
homepage www.puzzlescript.net
========
OBJECTS
========
Background
GREEN
Target
DarkBlue
Wall
BROWN
Player
Blue
Crate
Orange
=======
LEGEND
=======
. = Background
# = Wall
P = Player
* = Crate
@ = Crate and Target
O = Target
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
Background
Target
Player, Wall, Crate
======
RULES
======
late [Crate | Crate | Crate] -> [ | | ]
[ > Player | Crate ] -> [ > Player | > Crate ]
[ > Player | Target] -> [ > Player | > Target]
==============
WINCONDITIONS
==============
All Target on Crate
=======
LEVELS
=======
#########
#...*...#
#.....@.#
#.P.*.O.#
#.......#
#.......#
#########
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment