Hello! Does anyone happen to know if there are possibly any ways to log in-game activity? This would include when the player joins/leaves the game, and additionally how long they’ve been in-game totally.
If you have any suggestions/ways of this topic, that would be much appreciated. Thank you!
However, you could also track their activity through a Datastore. Once they join the game, you could track their seconds (convertible into minutes/hours) and then store this in the database.
Every time they join/leave, you would use IncrementAsync() to increase that time.