Created
December 16, 2023 00:24
-
-
Save nvh/51f72ee763042d09cb44fdc659cc5a8f to your computer and use it in GitHub Desktop.
My 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 My Game | |
| author My Name Here | |
| homepage www.puzzlescript.net | |
| verbose_logging | |
| ======== | |
| OBJECTS | |
| ======== | |
| Background | |
| green | |
| Target | |
| darkblue | |
| Wall | |
| brown | |
| Player | |
| blue | |
| Crate | |
| orange | |
| Button | |
| yellow | |
| Pusher | |
| red | |
| Rail | |
| green | |
| PushSource | |
| brown | |
| ======= | |
| LEGEND | |
| ======= | |
| . = Background | |
| # = Wall | |
| P = Player | |
| * = Crate | |
| @ = Crate and Target | |
| O = Target | |
| B = Button | |
| & = Pusher | |
| - = Rail | |
| C = Crate and Rail | |
| % = Pusher and PushSource | |
| 1 = PushSource | |
| Weight = Player or Crate | |
| ======= | |
| SOUNDS | |
| ======= | |
| ================ | |
| COLLISIONLAYERS | |
| ================ | |
| Background | |
| Target, Button, Rail, PushSource | |
| Player, Wall, Crate, Pusher | |
| ====== | |
| RULES | |
| ====== | |
| [ > Player | Crate ] -> [ > Player | > Crate ] | |
| [ > Weight | Button ] [ Pusher PushSource | Rail ] -> [ > Weight | Button ] [ > Pusher PushSource | Rail ] | |
| [ > Weight | Button ] [ Rail | Pusher PushSource ] -> [ > Weight | Button ] [ Rail | < Pusher PushSource ] | |
| [ > Pusher | Crate ] -> [ > Pusher | > Crate ] | |
| late [ Weight | Button no Weight ] [ Pusher Rail | PushSource ] -> [ Weight | Button no weight ] [ Rail | Pusher PushSource ] | |
| late [ Weight | Button no Weight ] [ PushSource | Pusher Rail ] -> [ Weight | Button no weight ] [ Pusher PushSource | Rail ] | |
| ============== | |
| WINCONDITIONS | |
| ============== | |
| all Target on Crate | |
| ======= | |
| LEVELS | |
| ======= | |
| ######### | |
| #.......# | |
| %C.*..O.# | |
| #.P.....# | |
| #...O.B.# | |
| #...-...# | |
| ####%#### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment