Game auto saves or saves

'how do i make so that the game autosaves your progress i’ve seen auto saves examles made in wick but idk the code or if its not autosave that the player chooses to save progress not wick

You can save game states on client and on server side.
Using wick editor only you have to save client side and you have the options to use cookies, local storage or indexed db.
Auto save is as simple as basic save triggered by a timer or game conditions (eg. when you reach a goal)
But the very first requirement is to make a game able to restore the game based on the saved data. This is something you cannot just copy and paste as is very tied to your game structure.
have a read here for some example on savings data on client side:

1 Like