Created
September 7, 2025 18:12
-
-
Save BlueNacho/1416aa6e6d41ceffbcaee1fddbc949bd to your computer and use it in GitHub Desktop.
Aventuras en la Selva (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 Aventuras en la Selva | |
| author FranciscoNasso, PabloConstantino | |
| homepage www.puzzlescript.net | |
| ======== | |
| OBJECTS | |
| ======== | |
| Background | |
| green darkgreen | |
| 01010 | |
| 10101 | |
| 01010 | |
| 10101 | |
| 01010 | |
| Basket | |
| orange white | |
| .111. | |
| 1...1 | |
| 1...1 | |
| 1...1 | |
| .111. | |
| Tree | |
| darkgreen black | |
| 11111 | |
| 10101 | |
| 11111 | |
| 10101 | |
| 11111 | |
| Player | |
| blue red white black brown | |
| ..3.. | |
| 41214 | |
| 41214 | |
| .000. | |
| .0.0. | |
| Banana | |
| yellow black | |
| ..0.. | |
| .000. | |
| .000. | |
| .000. | |
| ..1.. | |
| ======= | |
| LEGEND | |
| ======= | |
| . = Background | |
| # = Tree | |
| P = Player | |
| * = Banana | |
| @ = Banana and Basket | |
| O = Basket | |
| ======= | |
| SOUNDS | |
| ======= | |
| Player Move 512310 | |
| Banana Move 345210 | |
| Player CantMove 41234 | |
| StartLevel 786541 | |
| EndLevel 786543 | |
| Restart 7865435 | |
| ShowMessage 478483 | |
| CloseMessage 1241234 | |
| ================ | |
| COLLISIONLAYERS | |
| ================ | |
| Background | |
| Basket | |
| Player, Tree, Banana | |
| ====== | |
| RULES | |
| ====== | |
| [ > Player | Banana ] -> [ > Player | > Banana ] | |
| [ > Banana | no Tree no Basket ] -> [ | > Banana ] | |
| ============== | |
| WINCONDITIONS | |
| ============== | |
| All Basket on Banana | |
| ======= | |
| LEVELS | |
| ======= | |
| ######### | |
| #P....#.# | |
| #.*.#...# | |
| #...#...# | |
| #...#.### | |
| #......O# | |
| ######### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment