Created
March 3, 2014 23:49
-
-
Save anonymous/9337190 to your computer and use it in GitHub Desktop.
title
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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