Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

plutoerebus

16
Posts
4
Topics
16
Followers
62
Following
A member registered Aug 19, 2019 · View creator page →

Creator of

Recent community posts

Yes, that's the only choice. There was a 500 word limit with this jam. The one where you live is the good ending! :)

Thanks :)

Sorry if this has been asked before, but is it acceptable to break one 1,000 word story into 2 separate 500 word submissions? Thanks!

infestation

(1 edit)

You can access the x, y, and room as variables by modifying the direction in dialog hack.


First add these lines to the last part of the hack code (in bold):

before('startDialog', function () {

    var direction = keys[bitsy.curPlayerDirection];

    if (direction) {

        bitsy.scriptInterpreter.SetVariable('playerDirection', direction);

    }

    //Extra variables

    bitsy.scriptInterpreter.SetVariable('playerRoom', bitsy.player().room);

    bitsy.scriptInterpreter.SetVariable('playerX', bitsy.player().x);

    bitsy.scriptInterpreter.SetVariable('playerY', bitsy.player().y);

});

})(window);


In your case I don't think you'll need to save the room, so save X and Y to new variables (play_last_x, play_last_y) before you move, then load them when you exit to the new room.

Save:

{play_last_x = playerX}{play_last_y = playerY}

Exit/Load (replace with your room):

{exit "2" play_last_x play_last_y }

If you run into problems, make sure you save the variables in a different set of code than the one that loads them. Since this a hack, you won't be able to see it in the editor. I recommend uploading to itch to test following this guide.

Thanks!

(3 edits)

I've been developing an RPG in Godot for the past few months that has systems for dialogue, battles, maps, etc. Is it acceptable to re-use this for the jam if the characters, story, and assets are mostly created during the jam time frame?


I feel like this is not that different from using something like Godot's RPG template, so maybe I'm being paranoid, but I wanted to make sure. Thanks!

Hi, can we make minor spelling/changes after the deadline? I noticed a few I'd like to correct but don't want to break the rules. Thanks!

I hope to continue it one day. Thank you for playing! :)

Thanks!

(1 edit)

I'm already at 600 words with a VERY short story with only 2 interactions, so I was thinking about breaking it up into parts and having 1-2 additional submissions that continue the story. Is this encouraged or discouraged? I don't want to make it seem like I'm cheating. I can get creative and remove some extra text if I need to. Thanks!

Thank you! And thanks for making Bitsy, I really like this engine. I noticed the TK-Pod bug recently, it will be fixed in the next update.

great job! that was really fun. I especially liked the town names. :)

great job! I really liked the pixel art, music, and story. :)

thanks! I'm glad you liked it.

Thank you! And thanks for streaming your play through, I really enjoyed that! You had a lot of good comments, I was taking notes. I definitely hope to complete it, I'm still working on it but it might take awhile to get there.