Hello, is there any Way that i can store a txt file or txt data and lets say have only three specific players access that file?
You could do so by calling into Cloud Code and hardcoding those players’ identities. In all other cases it would return an error.
The alternative would be to store these files only in those three player’s accounts as duplicates. But without knowing what the use case is it’s hard to advice. Perhaps there’s even a better solution overall.
On Cloud Save custom items you can store any string but no more than 5 MiB. You could however split that file into multiple items. And definitely compress it if it’s this large - you can also store binary data as a string - in my test I was able to store arbitrary binary data using all 0-255 byte values and got the exact same binary string back from cloud save.
1 Like