0 votes
by (300 points)
retagged by
How to make saving in the game and startup? When the player reaches the end, the quest deleted the file with the saved game and created a new one.

I use Harlowe

1 Answer

+1 vote
by (6.2k points)
You can save with (save-game: 'save name'). Load with (load-game: 'save name')
by (300 points)
Thanks) How to creat autoload in game?
by (6.2k points)
You could just have (load-game: 'the name  of the save') in the first passage before the player can do anything. alternatively, you could have multiple saves.

(save-game: 'a')

(save-game: 'b')

(save-game: 'c')

for example.
...