- May 24, 2020
- 80
- 28
I have been trying to find a tool that will allow me to make a text-based adventure game like Degrees of Lewdity or the Era games. Does anyone know what I can use?
Thanks! I'll check it out!Twine
It can do that, yes. These games were made on Twine:Thanks! I'll check it out!
By the way, does this Twine have something like a resource system e.g. some events are gated by how much money you can spend or how much of a certain stat you have
I mean, Javascript is pretty easy to pick up if you know any other language, it's not type-safe though so it can be a bit weird if you're coming from a C background, depending on how familiar you are with Python. And for a simple text-based game that works like any CLI you'd only need a simple HTML container to display the text, nothing simpler than that in web dev short of a static pure HTML website maybe.python, C#, C++
Yeah I decided to go withI mean, Javascript is pretty easy to pick up if you know any other language, it's not type-safe though so it can be a bit weird if you're coming from a C background, depending on how familiar you are with Python. And for a simple text-based game that works like any CLI you'd only need a simple HTML container to display the text, nothing simpler than that in web dev short of a static pure HTML website maybe.
There's also ink if all you want to create is an interactive story. They let you export your narrative in web format:You must be registered to see the links
It uses ink.js which is basically just a web-interpreter of ink stories.You must be registered to see the links
Demo on how this would look like:You must be registered to see the links
I wouldn't recommend releasing any CLI program, it's just not user-friendly and "scary looking" for the average person.
Well, since you mentioned this becoming a simple prototype before, I was thinking more in line of pure Javascript, nothing fancy. Though, depending on what you wanna do, it might really just be way simpler to go for anything Twine because going for the pure JS route will have you create some main game loops that might already be ready to go with the former. I have no working experience with those though, so I can't give you a recommendation for them due to lack of experience.Yeah I decided to go withYou must be registered to see the linkswhich lets you write javascript in vs code. It took me a few hours last night to figure out how all the different Twine tools work together since there's the Twine editor, SugarCube, Twee, and this Tweego tool. I'm up and running though, so the fun can begin now.
I checked out Ink, and it looks like you can useYou must be registered to see the linkstoo. If I get annoyed with Twine I might try Ink instead.
I also looked into Yarn Spinner which also hasYou must be registered to see the links. They're using a bunch of DLLs though which I don't want to deal with if I run into any issues. I wanted this prototype to be Simple to make, so I'm not sure I even want to go Unity route.
I was thinking the same thing about CLI programs, people will probably be scared to try it lol
Degrees of Lewdity is made in Twine Sugarcube. (albeit it's a custom version, but the Base Sugarcube version already has basically everything u will ever need.)I have been trying to find a tool that will allow me to make a text-based adventure game like Degrees of Lewdity or the Era games. Does anyone know what I can use?
Yea SugarCube has a lot of features built-in like automatic saving and loading, sidebar navigation, event handling, and an audio system.Degrees of Lewdity is made in Twine Sugarcube. (albeit it's a custom version, but the Base Sugarcube version already has basically everything u will ever need.)