Hello,
Is there any way to do a persistent global announcement? I know I can broadcast a notification to all live players but I want to do an announcement which pops up when any of the players login and is then marked as read. Something like a Discount announcement or New Boss announcement.
Regards
Hello @MinatoTW,
For something like this, the best would be a global storage object that you set with your banner content (and which you can even edit via the console) with public read permissions but no write permissions (can only be updated from the server).
You can then have another storage object per user where you keep track of whether the user has read it or not. I’d suggest using a single object where you update a map announcement-id->read.
Best.