Hello Devs, I am trying to make a string accessed by all the players to read and write permission tried shared group data but the problem you need to add each player to the group to give access, are there any simpler way?, ty for your time reading the question
Answer by Made Wang · Jun 20 at 09:41 AM
Shared group data is not designed to be used by all users, refer to Using Shared Group Data - PlayFab | Microsoft Docs.
If you need to make it accessible to all players, you can try Title Data, but Title Data is not suitable for storing dynamic variables, it is more suitable for storing static constants, has a delay of up to 15 minutes per update and does not support multiple players modifying it at the same time .
If none of these work for you then you may need to use a third-party database to store your global data.
Ty for the help, found that it is not doable in playfab so, I'll be using a third-party database and I got a recommended database called Redis.