How do I make a novel in GDevelop?

I want to make a novel there, but I don’t know how to save it… There are also save buttons in the novels at this point, while you can make several such saves and choose at which point in the story to return how to do this?

Visual Novel? Apparently there’s something called Yarn which is good for this kind of thing.

Have a search on YouTube for “Yarn in GDevelop” for tutorials.

I helped someone a few years back with their novel. They had the pages of the novel side by side, the title page on the very left and each following page a screen width to the right, each page the same width as the scene:

image

When the player clicked on next, the camera moved to the right by a screen width, and when the player clocked previous, the camera moved to the left by a scene width.

To save, use an array and push the current page onto it. Then write the array to storage (here’s an example of the actions you will need - keep in mind that in the example LevelTimes is a structure, but that can be treated the same as an array). Remember to load it at the start of the scene.