Created
September 22, 2024 21:44
-
-
Save lee2sman/49c26259fac6644be606a21fd75bc0ab to your computer and use it in GitHub Desktop.
Noise Thing (PuzzleScript Script)
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 Noise Thing | |
author Not a pipe | |
homepage https://notapipe.itch.io | |
realtime_interval 0.25 | |
noaction | |
( | |
NOISE THING workshop file | |
) | |
======== | |
OBJECTS | |
======== | |
background . | |
black gray orange | |
01101 | |
20010 | |
01220 | |
21002 | |
00102 | |
Player p | |
pink yellow blue | |
01001 | |
22010 | |
01102 | |
01201 | |
20201 | |
npc n | |
purple red white | |
00100 | |
20110 | |
22201 | |
02112 | |
01221 | |
======= | |
LEGEND | |
======= | |
========= | |
SOUNDS | |
========= | |
startgame 46380308 | |
sfx0 37390306 | |
sfx1 31605108 | |
sfx2 19627702 (beat) | |
sfx3 93461503 (birdie sound) | |
sfx4 58069703 (wipeout) | |
================ | |
COLLISIONLAYERS | |
================ | |
Background | |
player, npc | |
====== | |
RULES | |
====== | |
random [ ] -> [ player ] sfx2 | |
[ player | | player ] -> [ | npc | ] sfx1 | |
[ player | player | player ] -> [ player | no player | player ] sfx0 | |
[ npc | | player ] -> [ | npc | ] | |
[ npc | npc | ] -> [ | npc | npc ] | |
random [player | player ] -> [ player | ] sfx3 | |
random [ player| | | player ] -> [ | | | ] sfx4 | |
[ action player ] -> [ npc ] | |
============== | |
WINCONDITIONS | |
============== | |
======= | |
LEVELS | |
======= | |
................. | |
................. | |
................. | |
................. | |
........p........ | |
................. | |
................. | |
................. | |
................. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment