Created
September 3, 2019 01:15
-
-
Save jcmiller11/05eda5de9a2f816d5b7fb950835339e0 to your computer and use it in GitHub Desktop.
Really Simple Game (PuzzleScript Script)
This file contains hidden or 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 hidden or 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 Really Simple Game | |
| author corey | |
| homepage www.puzzlescript.net | |
| ======== | |
| OBJECTS | |
| ======== | |
| Background | |
| Lightgreen | |
| Goal | |
| Red | |
| Wall | |
| Grey | |
| Player | |
| Blue | |
| ======= | |
| LEGEND | |
| ======= | |
| . = Background | |
| P = Player | |
| G = Goal | |
| # = Wall | |
| ================ | |
| SOUNDS | |
| ================ | |
| ================ | |
| COLLISIONLAYERS | |
| ================ | |
| Background | |
| Goal | |
| Player, Wall | |
| ================ | |
| RULES | |
| ================ | |
| ============== | |
| WINCONDITIONS | |
| ============== | |
| All Player on Goal | |
| ======= | |
| LEVELS | |
| ======= | |
| P#...#G | |
| .#.#.#. | |
| .#.#.#. | |
| .#.#.#. | |
| ...#... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment