Stream; The Game

by spiritofsky

Intro

Previous ChapterNext Chapter

The game starts here.

label splashscreen:

    scene splashscreen

    with Pause(1)

    show text "Stream; The Game" with dissolve

    with Pause(2)

    return

    scene splashscreen

label start:

    play music "beautifulMorning.mp3"

    scene splashscreen

    show image "me"

    D "Before we start this game there are a few things that I want you to know."

    D "I started this game quite a while ago (11th July 2015) so you might have forgotten some of the jokes used early on or something."

    D "I also usually code in HTML, not Python."

    D "This means that this game is kinda half assed and is filled with mistakes."

    D "Don't be too suprised if a background doesn't load or a character doesn't appear."

    D "A lot of the scene changes will be jarring because I didn't put in a transition or it didn't work."

    D "Hell, I don't even think that the splashscreen works."

    D "But whatever, I wrote half of this shit at like 7am with no sleep."

    D "Have fun I guess."

    hide image "me"

    show text "Stream; The Game" with dissolve

    with Pause(2)

    scene computer room bg

    P "Well fuck, it looks like it's Saturday again, time to start up the stream. Goddamn it."

    P "Hmm... What should I stream?"

    menu:

        "PF6":

            jump pf6

        "My Little Investigations.":

            jump mli

        "Italian Spiderman.":

            jump sp

    label pf6:

        scene pf6 bg

        P "Fuck, this boss is so difficult with these three, why is Celestia so useless?"

        D "How am I supposed to know?"

        jump streamover

    label mli:

        scene mli bg

        "The game starts up as normal, but when you're moving around the window your hand slips, causing the window to get all squished."

        P "Oh wow, look at those high quality, not at all squished graphics."

        N "So beautiful."

        D "So magestic."

        N "Truly."

        jump streamover

    label sp:

        scene sp bg

        N "I love watching this, it never gets old haha."

        D "The fucking SNAKES."

        jump streamover

    label streamover:

        scene computer room bg

        # ... the game continues here.

        "Who seemed to be happiest in that stream?"

    menu:

        "Dragon Cube":

            jump dc

        "Namgam":

            jump ng

Next Chapter