Hello there, not sure if its right category but should be. Been here for a while now, mostly sneaking and reading while holding popcorns. That aside i am trying to develop my first game, however with how concept is and how it is in my head, it should have a sequel.
I been trying to find but sadly i did not manage, how to code saving system, such as lost heir has. Where your character is saved and can be imported again. Or just to shorten my blabbering if anyone can help me with that system or point me in right direction it would be great.
Cross-title saving is implemented by requesting to CoG when submitting it. It transfers all value of preceding-game’s stats, so make sure to stay consistent in naming your stats.
I think what their trying to say is find important parts of the story and turn them into questions so they can get close to where they were before.
Let’s just say there’s a story about murder right? To figure out where the player needs to go it could be something like this:
Who was your first kill?
*choice
#Siri
*set first_kill "siri"
*goto q2
#Alexa
*set first_kill "alexa"
*goto q2
#Google assistant
*set first_kill "Google"
*goto q2
*label q2
Did you tell anyone about the murder?
*choice
#No
*set no-one_knows true
*goto ch2
#Yes
*set no-one_knows false
*goto ch2
*label ch2
*if (no-one_knows = true)
Who could've done it everyone loved ${first_kill}.
*if (no-one_knows = false)
The only one in the room at that time was you! And jess told me that you admitted to killing ${first_kill}, HOW COULD YOU SHE WOULD NEVER HURT ANYBODY.
That way by answering the questions the player could fast forward to the scene they were in before.