Skip to content

Instantly share code, notes, and snippets.

@jcmiller11
Created May 8, 2025 20:12
Show Gist options
  • Select an option

  • Save jcmiller11/19c178f83097094ff25ca92bd96d5b2b to your computer and use it in GitHub Desktop.

Select an option

Save jcmiller11/19c178f83097094ff25ca92bd96d5b2b to your computer and use it in GitHub Desktop.
Simple Rock Dodging Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
title Simple Rock Dodging Game
author jcGyo
homepage www.puzzlescript.net
realtime_interval 0.3
========
OBJECTS
========
Background
blue lightblue
11111
01111
11101
11111
10111
Wall
brown darkbrown
00000
01110
00000
01110
00000
Player
black orange white blue
.000.
.111.
22222
.333.
.3.3.
Rock
brown darkbrown
..0..
.111.
01000
.011.
..0..
Starter S
transparent
Ender E
transparent
=======
LEGEND
=======
. = Background
# = Wall
P = Player and Ender
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
Background
Starter, Ender
Rock
Player, Wall
======
RULES
======
[Rock Ender] -> [Ender]
[stationary Player] [ Rock ] -> [Player][ DOWN Rock ]
random [stationary Player] [ Starter No Rock] -> [Player][ Starter Rock ]
[vertical Player] -> [Player]
==============
WINCONDITIONS
==============
All Player on Rock
=======
LEVELS
=======
#SSSSSSS#
#.......#
#.......#
#.......#
#.......#
#.......#
#.......#
#.......#
#EEPEEEE#
Message You ded
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment