FEATURE REQUEST- Cloud variables

In my exploration with scratch, a coding platform just like cospaces but in 2d, there are cloud variables, that can only contain numbers to save progress, high scores, etc. I really want to make a game with high scores, so I made this feature request.
Thanks,
@Bladebob20000

12 Likes

Nice I love it! You get to do multiplayer AND do all that cloud variable stuff NICE.

@Delightex Devs You have to see this!!!

4 Likes

I agree, this would be a great step toward making these interactive games that kids love to play with in cospaces.

3 Likes
3 Likes

Fingers crossed everyone :thinking::thinking::thinking:

2 Likes

Mr blake bob I’m I was saying where’s the cloud variables at

1 Like

nice @Bladebob20000 cant wait what u can accomplish :grinning:

2 Likes

Here’s a simple high score saving game I made on scratch using Cloud variables;
https://scratch.mit.edu/projects/520295018/

Ps. To see the code, click see inside on the top.(Its really like cospaces)

3 Likes

Cloud variables also is live, so when a number in a cloud changes, other people viewing the project gets almost immediate changes.

2 Likes

I also would like to request a username input so that instead of having to choose your nickname, your username is automatically generates in the project.

2 Likes

For example, if I write this code;
image

2 Likes

This is what happens;
image

2 Likes

Is the @Delightex team working on this? It could be a great addiction for the game creators because with those variables you can save the progress of the player.

2 Likes

@Stefan can you tell me?

3 Likes

Yes, I would also like to know if this feature request was looked at or not.

3 Likes

@Alessio_Bonini did you notice the question?

2 Likes

I think the CoSpaces team didn’t saw the new feature request.

2 Likes

Actually you can’t save player progress with this. The one cloud variable would be the same for everyone running the projects at the same time. For example, if one person sets a high score while another person is also playing the same game at the same time, the High Score display would update for both of them.

2 Likes

@RobotChickens That’s only true if you’re storing a single value in a variable.

You can easily save scores for a game in a cloud variable by making the variable a list, or (as people do in Scratch as the variables can only be strings) make a comma-separated list in the variable to break it all down into the list components you need, and parse the list before updating it.