Skip to content

Instantly share code, notes, and snippets.

@octoConnors
Forked from anonymous/readme.txt
Created April 17, 2014 21:30
Show Gist options
  • Save octoConnors/11012713 to your computer and use it in GitHub Desktop.
Save octoConnors/11012713 to your computer and use it in GitHub Desktop.
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
Title RT Test
Author Connorses
realtime_interval 0.15
background_color darkbrown
========
OBJECTS
========
background
black
player
blue
u
red
.....
..0..
.0.0.
.....
.....
d
red
.....
.....
.0.0.
..0..
.....
l
red
.....
..0..
.0...
..0..
.....
r
red
.....
..0..
...0.
..0..
.....
dontmove
orange
.....
.....
..0..
.....
.....
rock
grey
.000.
00000
00000
00000
.000.
=======
LEGEND
=======
. = background
p = player
0 = rock
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
background
player, rock
u,d,l,r
dontmove
======
RULES
======
[stationary player dontmove] -> [player]
[up player] -> [player u dontmove]
[down player] -> [player d dontmove]
[left player] -> [player l dontmove]
[right player] -> [player r dontmove]
[stationary player u no dontmove] -> [up player]
[stationary player d no dontmove] -> [down player]
[stationary player l no dontmove] -> [left player]
[stationary player r no dontmove] -> [right player]
down [player no dontmove] [rock| ] -> [player] [down rock| ]
==============
WINCONDITIONS
==============
=======
LEVELS
=======
....0
.....
.....
.....
..p..
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment