Skip to content

Instantly share code, notes, and snippets.

Created March 3, 2014 23:49
Show Gist options
  • Save anonymous/9337190 to your computer and use it in GitHub Desktop.
Save anonymous/9337190 to your computer and use it in GitHub Desktop.
title
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
Title Uphill Pathfinder
Author Loneship Games
homepage http://connorses.deviantart.com/
========
OBJECTS
========
background
darkblue
player
blue
.....
.000.
00000
.0.0.
.....
monster
red white
.000.
.010.
00000
.0.0.
.....
monster2
red white
.000.
.010.
00000
.0.0.
.....
wall
brown
1
white
.....
.....
..0..
.....
.....
2
white
.....
...0.
.....
.0...
.....
3
white
.....
.0...
..0..
...0.
.....
=======
LEGEND
=======
. = background
p = player
# = wall
m = monster
path = 1 or 2 or 3
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
background
player, monster, monster2, wall
path
======
RULES
======
[path] -> [ ]
[monster2] ->[monster]
startloop
late [player|no path no wall] -> [player|3]
late [3|no wall no player no path] -> [3|2]
late [2|no wall no player no path] -> [2|1]
late [1|no wall no player no path] -> [1|3]
endloop
late [monster no path|3 no wall no monster] -> [ |monster2 3]
late [monster no path|2 no wall no monster] -> [ |monster2 2]
late [monster no path|1 no wall no monster] -> [ |monster2 1]
late [monster 1|2 no wall no monster] -> [1|monster2 2]
late [monster 2|3 no wall no monster] -> [2|monster2 3]
late [monster 3|1 no wall no monster] -> [3|monster2 1]
==============
WINCONDITIONS
==============
=======
LEVELS
=======
.........#.#######.
.#######.#.#.......
.#.....#.#...##..#.
....##.#.##..##...#
..###..#........#..
##m##.##....#...#..
#......#..#.#.###p.
########...........
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment