I’m not sure if the questions is in the right category or not but I hope it is. It’s two parts and I haven’t had any luck finding the answer.
I finished one game but I wanted to make another one so if I wanted to keep my first game how would I keep that game and create the new one?
One of the games I played was divided up into three parts (within one game) and I was thinking of doing that for one of my games but I wasn’t sure how I would set that up both in the startup file and in for when I code each scene?
I’m not entirely sure what your second question is asking. Do you want to know how some writers make multiple chapters? Or maybe how to switch between scenes?
The ChoiceScript game engine will look for your game files in a folder named scenes. So first, rename the scenes folder you used for the old game. Then second, you can create a new scenes folder for the new game.
I’m not sure what exactly you mean by “three parts (within one game)” here, which unfortunately limits my ability to answer. Can you explain in more detail what the other game’s author did to divide their game, how that acted when you played, and how you want your own game to act?
If you meant putting multiple chapters in a single game, it’s actually pretty simple. First, you create all your individual chapters as individual .txt files. Then second, you list all those file names in your startup.txt file, indented under the *scene_list statement. It should look something like this:
Finally, at the end of each .txt file, you add a *finish command. This command causes ChoiceScript to advance to the next .txt file listed under the *scene_list statement. Well, there’s one exception: the very last file should have an *ending command instead of a *finish command.
Not exactly sure, but I think they’re talking about a series, but one in which you can only access the second installment by playing and finishing the first game.
For example, Heroes Rise is a series of games, but you don’t actually need to play the first installment first, because each game is the series is published individually. On the other hand, Choice of Romance is a Trilogy, but you can only access the second installment of the game after you’ve finished the first part, and can only access the third part after you’ve finished the second.
Choice of romance is a only game. That sold on episodes like Zombie Exodus. Or life strange of Tell tale games. That’s why you have play previous chapters to playing the whole game.
Step Two: You can rename your newest Scene files (the ones listed as “untitled”) for easier navigation.
Step Three: Telling the Startup File what order it should read your “chapters”.
Go back into your Startup File.
Insert the *scene_list command.
List off your “chapters” in whatever order you want them to happen from start to finish.
Make sure your chapter titles match up in both the Startup File and the actual scene file names otherwise you’ll run an error when you test run your game.