Announcing Storyfall - a new IF authoring tool and publishing platform!

Good point - I tested and this does work in Chrome (which I don’t use, it’s basically spyware).

I couldn’t get it to work in either Safari nor Brave, even though both supposedly offer translation.

With Firefox it didn’t auto-detect the Spanish (I guess because there’s also English on the page?) but when I did it manually it worked, though it took about 10 seconds to translate two sentences.

I added my first iteration of voting-based multiplayer games! I’m really excited about this. It makes ANY story on Storyfall multiplayer-capable, without requiring any additional work from the writer. You can just go and create a multiplayer game from any published story, share the invite code or link, and your friends can join and play it with you! You can set whether voting is by majority or unanimous consent, and also add a voting timeout. I even added a chat!

I’m still working on some other multiplayer features that will allow writers to create stories with different characters and inter-twining stories, but that’s a different kind of game entirely and will take me a while to figure out the mechanics for.

I’d appreciate any help testing for bugs - I’ve tested quite a bit but real-time server networking can get complicated.

Screen Recording 2026-02-01 at 12.57.53

3 Likes

A few new features launched over the past couple of days:

  • Avatars for variables, NPCs, and factions.
  • Characters. You can create characters the reader can pick from, either when starting a game or later on. Characters can have their own starting (default) variable values as well as NPC and faction relationships. You could have characters be things like “classes” (mage, knight, ranger, that king of thing) or named characters, or perhaps even something else entirely. Characters can also have different starting points in the story (as in they start on a different scene). You can also set some scenes and choices to only be available to specific characters. Plus, you can filter the story tree to highlight choices and scenes specific to a particular character. This enables more advanced single player games but it’s also the foundation for some more advanced multiplayer features I’ll be working on where people would be able to simultaneously play as different characters within the same game, with their choices affecting each other. More on that later as I’m still working out the details.
  • Slash commands. This is an editor staple - instead of having to use a toolbar at the top (which is still available), you can just type / and pick from any number of headings, embeds, etc.
  • Conditional blocks. Previously you could render conditional text using variables by typing something like {gold > 20: You’re rich!} but now you can also type /if and insert an entire conditional block. The block can have any of the other editor embeds, including nested variables, images, headings, etc., and even more nested conditional blocks!

characters and avatars (small)

editor slash commands and conditiona blocks (small)

2 Likes

Multiplayer co-op games are in! This builds on the character feature I recently released, so you can create intertwining multiplayer games where different players play as different characters at the same time. I also added the ability to have “sync points” where the characters have to wait when they get there until everyone reaches a sync point. (This could be something like a dungeon door that needs to be opened for instance.)

I created a very simple co-op example game here. If you don’t have a buddy to play with, just open a second private browser tab and paste the invite link there to check it out! (and please forgive the bad writing, it’s just a demo)

1 Like

This is cool. Firstly, i had to paste the invite link into a different browser. Presumably this is what you get, since each browser will remember its own state.

For multiplayer;

Mary is told John arrives before he does. This works because the John game always branches to that state, but that’s because the demo doesn’t have a lot of branching. Having one person read something about another player before it happens will be a problem in general.

I liked the way the game does the sync points. But they also presume that the event will actually happen. Ie that the other player(s) will actually get there. What if they quit? What if they get other choices?

Good stuff tho.

1 Like

Thanks for testing it out!

Good points - I think what I’d need to add is a new condition for conditional text that checks whether a particular character is at the scene. That way text about another character getting there only appears at the moment they get there, which would feel a lot more immersive and correct.

As far as branching - yeah, sync points are really there for stories that converge at some scene/room. They’re optional so I’d say if you have a story where convergence isn’t guaranteed, you could just skip them - though I think as a narrative device it’s nice to have everyone meet up every now and then; but it really depends on what story you’re writing.

Edit: you should be able to use the same browser if you open a private tab/window which won’t remember your cookies and local storage.

1 Like

It’s taken me a while to get this feature in (and it’s in beta!) but Storyfall now supports importing from Twine and Ink files!

You don’t even need to register to play around with this feature. Not everything maps perfectly of course, for instance Twine hyperlinks end up being choices at the bottom of the scene - and custom macros and JS are skipped entirely, but this is a good start I think. It would at least make it significantly easier to re-host a Twine or Ink story on Storyfall, fix up a few things, and, for instance, enable multiplayer gaming for free!

Also tagging @J_J_Guest and @Draconis since we discussed this feature earlier in the thread and I thought you might be interested.

The other thing I added is the ability to export games as HTML. I already had a JSON export system but all that was useful for was backing up and re-importing your story into Storyfall. The HTML export produces a standalone file that’s playable offline or can be hosted on a web page. This is also a WIP and isn’t 100% up to feature parity with the storyfall.com player, but it does most things, including variable substitutions and choice effects (e.g. you choose something and it increments some variable).

Hopefully this alleviates some concerns folks had about “what happens if Storyfall implodes one day” - and it should make it easier to move your work both in and out of Storyfall. I don’t like walled gardens and prefer to give writers the ability to go somewhere else if they want.

3 Likes