callback_ViewServerActivity()
Description
Returns an extremely detailed and nested struct of everything happening on your server.
It has a rooms key which has a struct representing every room, where the key is the room name as a string. In this struct representing the room the keys are
"clients" - the value is a struct represening all clients here
"persistentObjects" - the value is an array of all persistentObject ids
In the client struct the keys are client ids and the value is an (array of the IDs of entities) that this client owns.
Example Implementation
You can use this to get a total count of all clients on your server
You can use this to get a total count of all entities belonging to any client
You can see which persistent object is in which room
Last updated