Skip to content

Instantly share code, notes, and snippets.

@lyaann
Created May 5, 2021 20:25
Show Gist options
  • Save lyaann/df7d292aa20f4fdccbe40e49151ef0f3 to your computer and use it in GitHub Desktop.
Save lyaann/df7d292aa20f4fdccbe40e49151ef0f3 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 My Name Here
homepage www.puzzlescript.net
========
OBJECTS
========
Background
darkblue white lightblue
00000
00000
00000
00000
00000
Target
grey darkgray white blue
.....
.222.
20202
10001
3..3.
Wall
black yellow white
10000
02000
00000
00010
00002
Player
white lightblue
..10.
.10.0
.00..
.10.0
..10.
Crate
lightbrown orange yellow
0.0.0
.020.
02220
.020.
0.0.0
=======
LEGEND
=======
. = Background
# = Wall
P = Player
* = Crate
@ = Crate and Target
O = Target
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
Background
Target
Player, Wall, Crate
======
RULES
======
[ > Player | Crate ] -> [ > Player | > Crate ]
==============
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