Loading Saved Player Properties on a Web Game?

Hi guys,
Always working on my web-multiplayer top down shooter. I want the player to choose a number of things, like name, player color, and perks (when i’ll script them). ← i already scripted those and works fine, the fact is that everytime he loads the game on the web he has to put again the name and the color.

I would like to have a default loading of the previous things that the player choose when i started the game.

I’m not asking for a script, i’m asking for words lol or rather how should i proceed to achieve this…

thanks for the help!

For the name you can SetString and GetString
For colors you will have to store the R G and B separately in floats, or make it parse a string, etc

1 Like

thanks man!