Navigation

    CreatiCode Scratch Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • CreatiCode
    1. Home
    2. Tags
    3. variables
    Log in to post
    • All categories
    • jeffreyrb03-gmail

      Does saving private data act as like a "secret" or "environment variable"?
      Help • question help variables • • JaecadeJnight

      2
      0
      Votes
      2
      Posts
      198
      Views

      info-creaticode

      @jeffreyrb03-gmail

      It should not be used to store real secrets like passwords. The reason is that this block runs on the “client” side (the user’s browser), so when the data is sent over the Internet to the webserver, it is exposed in the network package.

      However, for most games/projects you build for learning, it should be good enough.

      The “private” mode is meant to store data specific for one user. Say 100 users are running your shared game. Suppose each of them can specify a secret passcode that can be used to save or load game progress. You can use this block and use the “private” mode, so the data is separated by user ID, and 2 users can’t see each other’s data.

    • jeffreyrb03-gmail

      Blocks to get info from other websites/APIs
      Feedback • feature-request variables • • JaecadeJnight

      11
      1
      Votes
      11
      Posts
      517
      Views

      c.

      @jeffreyrb03-gmail
      Yeah, but why not just use ChatGPT blocks for that reason?