I have a plugin that displays the player position until stopped.What is the best way to store this information after the game is terminated?Thanks!
I personally would use a dictionary where the key is a their user ID (ulong) and the value is their position (Vector 3) Dictionary<ulong, Vector3>.If you want to keep this data after the server closes you can store this in a data file.