What I have:
A text box where the player will input its ID.
What I need:
A way to store that player score based on its ID.
e.g. >> ID.Text = Logan77 | Score = 100
WebStorage.LocalValue(ID.Text+"_Score")
will turn into WebStorage.LocalValue("Logan77_Score")
then when needed, store Logan's current score to his created WebStorage key.
Maybe a better way to ask it would be: Is it possible to create a variable name based on another variable value? Or even: How can I store data per UserID?
I've experience with languages like C#, JS/jQuery, LUA, Python, F#, etc, so I think that something like this can be done with JSON, but how I started with Construct 2 today, I don't have a clue about what to do here