Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

YahliOnline

6
Posts
1
Topics
1
Following
A member registered 95 days ago

Creator of

Recent community posts

When the song restarts does it skip a beat or does it go immediately back to the start?

gotcha thank you! how do you find it sounds when it loops?

If anyone is interested, I figured it out! Thanks to THIS tutorial from Marlowe Dobbe, ledoux, and the whoever made the Museum hack!

How to start a second bitsy game when another ends

Step 1: Put the html files in the same folder.

Step 2: Rename them something easy (I did index for the first game and page2 for the second game).

Step 3: Add an ending for the first game 

Step 4: In the ending dialogue for the first game, only place the text for your file name (without the “.html”)

Step 5: Download the game and open it up in an html editing tool (I’m using Visual Studio Code). Rename it “index.html”

Step 6: Find the following block:

    if (end) {

        startEndingDialog(end);

    }

And replace it with this:

    if (end) {

        window.open(dialog[end.id].src + ".html", "_self");

    }

There you go! Open you index file in your browser and it should work!

Hi vaasu! How did you end up figuring this out?

Hi! I'm making games in both bitsy and bitsy3d. I was wondering if there was a way to program it so that when you trigger the ending it would start up the next html file. Thanks!

Hi! My name is Online, I'm a game design student and am enjoying messing around with bitsy!