#Score system - Saving Highest Score with user name's input, like in the Arcades

4 messages · Page 1 of 1 (latest)

timid cradle
#

Hey there, is there any tutorials out there, or as part of the paid courses, where we can see how to save the highest score, the user name, and then display it, like in a list of scores; with the highest on top, just like we used to see in the arcades.

thanks!

abstract burrow
#

You can write that info (player name, score, etc) in a file, whether it's binary, human readable, etc and then read the file when your game needs to show that info on screen. Let me search a tutorial on that

#

I think this one explains really good some methods to save/load.
https://www.youtube.com/watch?v=43BZsLZheA4

Hello Godotneers! When you make a game, you will eventually want to add a system for saving and loading games. This can become surprisingly difficult as your game becomes more complex. In this video we're going to explore how we can save all revelant information from our game and load it back, how to make sure we can still load old saved games a...

▶ Play video
#

So basically choose a method, learn it and then start creating your own save/load functions to apply them to your game